diff --git a/README.md b/README.md
index 8304e06..ce80265 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,8 @@ DRONE SERIES - WEBAPI IMPLEMENT PRODUCER API
## Configuration
Configuration files are located under `config` dir.
-See https://github.com/lorenwest/node-config/wiki/Configuration-Files
+See https://github.com/lorenwest/node-config/wiki/Configuration-Files
+Some settings (e.g AWS credentials) must be set only as Environment variables. Check file custom-environment-variables.json for full list.
|Name|Description|
|----|-----------|
@@ -30,6 +31,12 @@ See https://github.com/lorenwest/node-config/wiki/Configuration-Files
|`mail.EMAIL_FROM`| The from email address |
|`mail.SMTP_USERNAME`| The smtp username |
|`mail.SMTP_PASSWORD`| The smtp password |
+|`AWS_ACCESS_KEY`| The AWS Access Key see http://docs.aws.amazon.com/general/latest/gr/managing-aws-access-keys.html |
+|`AWS_SECRET_KEY`| The AWS Secret Key |
+|`AWS_REGION`| Your AWS access region. You should use all services from the same region (Currently only S3 is used). |
+|`S3_BUCKET`| The S3 bucket name for file upload. |
+
+AWS settings are optional to set, but file upload will not working (you can use other features).
## Mail service configuration
@@ -137,4 +144,46 @@ you also can export those values before run(data from forum).
`export SMTP_PASSWORD="yourpassword"`
`export EMAIL_FROM="your@email.com"`
-force push 1/11/2017
+# S3 setup
+- Open S3 console https://console.aws.amazon.com/s3
+- Create Bucket
+- Check `Region Name` to `Code` mapping here http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html and set `AWS_REGION`
+- Select tab **Properties** from the top right menu
+- Expand **Permissions** tab
+- Click on **Add bucket policy** and set below policy
+```
+{
+ "Version": "2008-10-17",
+ "Statement": [
+ {
+ "Sid": "AllowPublicRead",
+ "Effect": "Allow",
+ "Principal": {
+ "AWS": "*"
+ },
+ "Action": "s3:GetObject",
+ "Resource": "arn:aws:s3:::dsp-21472/*"
+ }
+ ]
+}
+```
+Update `dsp-21472` to your bucket name.
+
+- Click on **Add CORS Configuration** and set below policy
+```
+
+
+
+ *
+ GET
+ PUT
+ POST
+ DELETE
+ 3000
+ *
+
+
+
+
+```
+In production mode, you should restrict `AllowedOrigin`.
\ No newline at end of file
diff --git a/bootstrap.js b/bootstrap.js
index 63e2792..d58f078 100644
--- a/bootstrap.js
+++ b/bootstrap.js
@@ -11,7 +11,35 @@
global.Promise = require('bluebird');
const Joi = require('joi');
+const _ = require('lodash');
const logger = require('./common/logger');
+const AWS = require('aws-sdk-promise');
+const config = require('config');
+
+// Validate AWS config
+Joi.validate(_.pick(config, 'AWS_ACCESS_KEY', 'AWS_SECRET_KEY', 'AWS_REGION', 'S3_BUCKET'),
+ {
+ AWS_ACCESS_KEY: Joi.string().required(),
+ AWS_SECRET_KEY: Joi.string().required(),
+ AWS_REGION: Joi.string().required(),
+ S3_BUCKET: Joi.string().required(),
+ }, (err) => {
+ if (err) {
+ logger.logFullError(err, 'AWS CREDENTIALS VALIDATION');
+ // allow to use app if s3 is not configured in DEV mode
+ if (process.env.NODE_ENV === 'production') {
+ process.exit(0);
+ }
+ return;
+ }
+ AWS.config.update({
+ s3: '2006-03-01',
+ sts: '2011-06-15',
+ accessKeyId: config.AWS_ACCESS_KEY,
+ secretAccessKey: config.AWS_SECRET_KEY,
+ region: config.AWS_REGION,
+ });
+ });
// add joi types
Joi.objectId = () => Joi.string().regex(/^[a-f0-9]{24}$/);
@@ -40,3 +68,4 @@ logger.buildService(require('./services/NotificationService'));
logger.buildService(require('./services/ServiceServices'));
logger.buildService(require('./services/DronePositionService'));
logger.buildService(require('./services/NoFlyZoneService'));
+logger.buildService(require('./services/AWSService'));
diff --git a/common/Permission.js b/common/Permission.js
index cfb3940..9983d9b 100644
--- a/common/Permission.js
+++ b/common/Permission.js
@@ -39,25 +39,32 @@ function providerRoleCheck(req, res, next) {
next();
});
}
+
/**
* check the user permission
- * if user role not pilot, then cannot perform pilot actions
+ * if user role not pilot or provider, then cannot ask provider resource
* @param req
* @param res
* @param next
*/
-function pilotRoleCheck(req, res, next) {
+function pilotProviderRoleCheck(req, res, next) {
User.findOne({_id: req.auth.sub}, (err, user) => {
if (!user) {
- throw new errors.AuthenticationRequiredError('Anonymous is not allowed to access', 401);
+ next(new errors.AuthenticationRequiredError('Anonymous is not allowed to access', 401));
+ return;
}
- if (user.role !== Role.PILOT) {
- throw new errors.NotPermittedError('Non-pilot is not allowed to access', 403);
+ if ((user.role !== Role.PROVIDER || !user.provider) && (user.role !== Role.PILOT)) {
+ next(new errors.NotPermittedError('User who is not either provider or pilot is not allowed to access', 403));
+ return;
}
+
req.auth.payload = {
- role: Role.PILOT,
+ role: user.role
};
+ if (user.role === Role.PROVIDER) {
+ req.auth.payload.providerId = user.provider.toString();
+ }
next();
});
}
@@ -67,7 +74,7 @@ module.exports = {
providerRole() {
return providerRoleCheck;
},
- pilotRole() {
- return pilotRoleCheck;
+ pilotProviderRole() {
+ return pilotProviderRoleCheck;
},
};
diff --git a/common/logger.js b/common/logger.js
old mode 100755
new mode 100644
index 0de4fcf..9ccc516
--- a/common/logger.js
+++ b/common/logger.js
@@ -52,8 +52,8 @@ function _sanitizeObject(obj) {
return JSON.parse(JSON.stringify(obj, (name, value) => {
// Array of field names that should not be logged
// add field if necessary (password, tokens etc)
- const removeFields = [];
- if (_.contains(removeFields, name)) {
+ const removeFields = ['secretAccessKey', 'sessionToken', 'password'];
+ if (_.includes(removeFields, name)) {
return '';
}
if (_.isArray(value) && value.length > 30) {
diff --git a/config/custom-environment-variables.json b/config/custom-environment-variables.json
index cb5620d..3affcd2 100644
--- a/config/custom-environment-variables.json
+++ b/config/custom-environment-variables.json
@@ -1,3 +1,7 @@
{
- "JWT_SECRET": "JWT_SECRET"
+ "JWT_SECRET": "JWT_SECRET",
+ "AWS_ACCESS_KEY": "AWS_ACCESS_KEY",
+ "AWS_SECRET_KEY": "AWS_SECRET_KEY",
+ "AWS_REGION": "AWS_REGION",
+ "S3_BUCKET": "S3_BUCKET"
}
\ No newline at end of file
diff --git a/config/default.js b/config/default.js
index ff20497..c173a69 100644
--- a/config/default.js
+++ b/config/default.js
@@ -21,7 +21,7 @@ module.exports = {
API_VERSION: 1,
RESET_CODE_EXPIRES: 60 * 60,
db: {
- url: process.env.MONGOLAB_URI || 'mongodb://localhost:27017/drones',
+ url: process.env.MONGOLAB_URI || 'mongodb://localhost:27017/dsp',
poolSize: 5,
},
mail: {
diff --git a/config/production.js b/config/production.js
index 1290af1..403e863 100644
--- a/config/production.js
+++ b/config/production.js
@@ -17,7 +17,7 @@ module.exports = {
SALT_WORK_FACTOR: 2,
TOKEN_EXPIRES: 10 * 60 * 60,
db: {
- url: process.env.MONGOLAB_URI || 'mongodb://localhost:27017/drones',
+ url: process.env.MONGOLAB_URI || 'mongodb://heroku_fx9hv53r:ar99t25g01qogb3m8qshhml82r@ds143588.mlab.com:43588/heroku_fx9hv53r',
poolSize: 5,
},
};
diff --git a/config/test.js b/config/test.js
index 99851af..bfc184f 100644
--- a/config/test.js
+++ b/config/test.js
@@ -12,7 +12,7 @@
module.exports = {
db: {
- url: 'mongodb://localhost:27017/drones_test',
+ url: 'mongodb://heroku_fx9hv53r:ar99t25g01qogb3m8qshhml82r@ds143588.mlab.com:43588/heroku_fx9hv53r',
poolSize: 5,
},
};
diff --git a/controllers/AWSController.js b/controllers/AWSController.js
new file mode 100644
index 0000000..e72ae21
--- /dev/null
+++ b/controllers/AWSController.js
@@ -0,0 +1,29 @@
+/**
+ * Copyright (c) 2017 Topcoder Inc, All rights reserved.
+ */
+'use strict';
+
+/**
+ * Exposes the API's for AWS.
+ *
+ * @author TCSCODER
+ * @version 1.0
+ */
+
+const AWSService = require('../services/AWSService');
+
+// Exports
+module.exports = {
+ getFederationToken,
+};
+
+
+/**
+ * Generate federation token
+ *
+ * @param req the request
+ * @param res the response
+ */
+function* getFederationToken(req, res) {
+ res.json(yield AWSService.getFederationToken(req.auth.sub, req.body));
+}
diff --git a/controllers/DroneController.js b/controllers/DroneController.js
index 2801bab..52228ec 100644
--- a/controllers/DroneController.js
+++ b/controllers/DroneController.js
@@ -24,7 +24,9 @@ module.exports = {
getSingle,
currentLocations,
updateLocation,
+ updateLocationBySerialNumber,
createEmpty,
+ checkLocation,
};
@@ -110,6 +112,45 @@ function* updateLocation(req, res) {
res.io.emit('dronepositionupdate', drone);
}
+/**
+ * Update a drone location by serial number
+ * @param req
+ * @param res
+ */
+function* updateLocationBySerialNumber(req, res) {
+ const nfzFields = helper.convertQueryFieldStringToArray(req.query.nfzFields);
+ const nearDroneFields = helper.convertQueryFieldStringToArray(req.query.nearDroneFields);
+ const returnNFZ = req.query.returnNFZ;
+ const nfzLimit = req.query.nfzLimit;
+ const nearDronesMaxDist = req.query.nearDronesMaxDist;
+ const nearDronesLimit = req.query.nearDronesLimit;
+ const drone = yield DroneService.updateLocationBySerialNumber(req.params.sn, req.body, returnNFZ,
+ nfzFields, nfzLimit, nearDronesMaxDist, nearDroneFields, nearDronesLimit);
+ res.json(drone);
+ res.io.emit('dronepositionupdate', drone);
+}
+
+/**
+ * check location
+ * @param req
+ * @param res
+ */
+function* checkLocation(req, res) {
+ const lng = req.query.lng;
+ const lat = req.query.lat;
+ const nfzFields = helper.convertQueryFieldStringToArray(req.query.nfzFields);
+ const nearDroneFields = helper.convertQueryFieldStringToArray(req.query.nearDroneFields);
+ const returnNFZ = req.query.returnNFZ;
+ const nfzLimit = req.query.nfzLimit;
+ const nearDronesMaxDist = req.query.nearDronesMaxDist;
+ const nearDronesLimit = req.query.nearDronesLimit;
+ const entity = { lat, lng };
+ const ret = yield DroneService.checkLocation(entity, returnNFZ, nfzFields,
+ nfzLimit, nearDronesMaxDist, nearDroneFields, nearDronesLimit);
+ res.json(ret);
+ res.io.emit('checklocation', ret);
+}
+
/**
* obsolete , post drone
*/
diff --git a/controllers/MissionController.js b/controllers/MissionController.js
index d2dc11b..234e6e5 100644
--- a/controllers/MissionController.js
+++ b/controllers/MissionController.js
@@ -26,6 +26,8 @@ module.exports = {
getPilotChecklist,
updatePilotChecklist,
fetchPilotMissions,
+ checkDroneStatus,
+ loadMissionToDrone,
};
/**
@@ -109,7 +111,7 @@ function* getAllByDrone(req, res) {
* @param res the response
*/
function* getPilotChecklist(req, res) {
- res.json(yield MissionService.getPilotChecklist(req.params.id, req.auth.sub));
+ res.json(yield MissionService.getPilotChecklist(req.params.id, req.auth));
}
/**
@@ -119,7 +121,7 @@ function* getPilotChecklist(req, res) {
* @param res the response
*/
function* updatePilotChecklist(req, res) {
- res.json(yield MissionService.updatePilotChecklist(req.params.id, req.auth.sub, req.body));
+ res.json(yield MissionService.updatePilotChecklist(req.params.id, req.auth, req.body));
}
/**
@@ -129,5 +131,26 @@ function* updatePilotChecklist(req, res) {
* @param res the response
*/
function* fetchPilotMissions(req, res) {
- res.json(yield MissionService.fetchPilotMissions(req.auth.sub, req.query));
+ res.json(yield MissionService.fetchPilotMissions(req.auth, req.query));
}
+
+/**
+ * Check the drone status for the specified mission
+ *
+ * @param req the request
+ * @param res the response
+ */
+function* checkDroneStatus(req, res) {
+ res.json(yield MissionService.checkDroneStatus(req.auth, req.params.id));
+}
+
+/**
+ * Load the mission to the drone, this will send the mission to drone via http post request
+ *
+ * @param req the request
+ * @param res the response
+ */
+function* loadMissionToDrone(req, res) {
+ res.json(yield MissionService.loadMissionToDrone(req.auth, req.params.id));
+}
+
diff --git a/data/demoData/categories.json b/data/demoData/categories.json
new file mode 100644
index 0000000..696d9cd
--- /dev/null
+++ b/data/demoData/categories.json
@@ -0,0 +1,5 @@
+[{
+ "name": "Delivery"
+}, {
+ "name": "Imagery"
+}]
diff --git a/data/demoData/dronePositions.json b/data/demoData/dronePositions.json
new file mode 100644
index 0000000..de28f3e
--- /dev/null
+++ b/data/demoData/dronePositions.json
@@ -0,0 +1,180 @@
+[
+ {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }, {
+ "lat":20.3,
+ "lng":30.5
+ }
+]
\ No newline at end of file
diff --git a/data/demoData/drones-within-area.json b/data/demoData/drones-within-area.json
new file mode 100644
index 0000000..92544be
--- /dev/null
+++ b/data/demoData/drones-within-area.json
@@ -0,0 +1,380002 @@
+[
+ {
+ "name": "drone0",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone0 accessories"
+ }
+ },
+ "system": "drone system 0",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91922165262204,
+ 38.706522492830295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1 accessories"
+ }
+ },
+ "system": "drone system 1",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7042694187279,
+ 38.479856893747275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2 accessories"
+ }
+ },
+ "system": "drone system 2",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47539771516159,
+ 38.769359940546686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3 accessories"
+ }
+ },
+ "system": "drone system 3",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48758242332184,
+ 38.868963845768505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4 accessories"
+ }
+ },
+ "system": "drone system 4",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88178771363893,
+ 39.762360462318064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5 accessories"
+ }
+ },
+ "system": "drone system 5",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76834775639998,
+ 39.42846924950753
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6 accessories"
+ }
+ },
+ "system": "drone system 6",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82877499480622,
+ 38.74779007575818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7 accessories"
+ }
+ },
+ "system": "drone system 7",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5641536272995,
+ 39.010148151723236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8 accessories"
+ }
+ },
+ "system": "drone system 8",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93541045872941,
+ 38.58669702451795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone9",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone9 accessories"
+ }
+ },
+ "system": "drone system 9",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20321706301677,
+ 39.020443314899445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone10",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone10 accessories"
+ }
+ },
+ "system": "drone system 10",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02005032911342,
+ 39.59358129220318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone11",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone11 accessories"
+ }
+ },
+ "system": "drone system 11",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26540100787749,
+ 39.088550437138764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone12",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone12 accessories"
+ }
+ },
+ "system": "drone system 12",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19724232060452,
+ 39.065202246313014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone13",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone13 accessories"
+ }
+ },
+ "system": "drone system 13",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33319361491372,
+ 39.2664230061415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone14",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone14 accessories"
+ }
+ },
+ "system": "drone system 14",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08070314268424,
+ 38.33930911546009
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone15",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone15 accessories"
+ }
+ },
+ "system": "drone system 15",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84509814401765,
+ 38.5431076766905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone16",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone16 accessories"
+ }
+ },
+ "system": "drone system 16",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61566161648064,
+ 38.95144077596196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone17",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone17 accessories"
+ }
+ },
+ "system": "drone system 17",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84123438158318,
+ 39.22172663149557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone18",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone18 accessories"
+ }
+ },
+ "system": "drone system 18",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43181465754162,
+ 38.64829898112704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone19",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone19 accessories"
+ }
+ },
+ "system": "drone system 19",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34231533038928,
+ 38.97857501781383
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone20",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone20 accessories"
+ }
+ },
+ "system": "drone system 20",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17361966005764,
+ 39.18915418384087
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone21",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone21 accessories"
+ }
+ },
+ "system": "drone system 21",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88274372930866,
+ 39.51668779590666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone22",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone22 accessories"
+ }
+ },
+ "system": "drone system 22",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32138496425937,
+ 38.75534454410721
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone23",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone23 accessories"
+ }
+ },
+ "system": "drone system 23",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32935236778539,
+ 38.325026912152204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone24",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone24 accessories"
+ }
+ },
+ "system": "drone system 24",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11881983032796,
+ 38.81330224790844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone25",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone25 accessories"
+ }
+ },
+ "system": "drone system 25",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44845764123191,
+ 39.524866591707806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone26",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone26 accessories"
+ }
+ },
+ "system": "drone system 26",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06165122932047,
+ 39.398322736362765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone27",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone27 accessories"
+ }
+ },
+ "system": "drone system 27",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45365874630563,
+ 38.56067466008614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone28",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone28 accessories"
+ }
+ },
+ "system": "drone system 28",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93558831894673,
+ 39.1168362372712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone29",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone29 accessories"
+ }
+ },
+ "system": "drone system 29",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53519317861094,
+ 39.47810999689136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone30",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone30 accessories"
+ }
+ },
+ "system": "drone system 30",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33208613282586,
+ 39.2750799956316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone31",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone31 accessories"
+ }
+ },
+ "system": "drone system 31",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72163046304941,
+ 38.84330375438695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone32",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone32 accessories"
+ }
+ },
+ "system": "drone system 32",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34893303961083,
+ 38.54306508375978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone33",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone33 accessories"
+ }
+ },
+ "system": "drone system 33",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40927552561247,
+ 38.44071052397403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone34",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone34 accessories"
+ }
+ },
+ "system": "drone system 34",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19834776706799,
+ 38.59280491582741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone35",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone35 accessories"
+ }
+ },
+ "system": "drone system 35",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89615091253177,
+ 39.37270616677573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone36",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone36 accessories"
+ }
+ },
+ "system": "drone system 36",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58526929191252,
+ 39.63948327286971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone37",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone37 accessories"
+ }
+ },
+ "system": "drone system 37",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57302061926768,
+ 39.04828267964059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone38",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone38 accessories"
+ }
+ },
+ "system": "drone system 38",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45163755836128,
+ 38.81445923816107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone39",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone39 accessories"
+ }
+ },
+ "system": "drone system 39",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86042113249096,
+ 39.1586444933201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone40",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone40 accessories"
+ }
+ },
+ "system": "drone system 40",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03743073869472,
+ 38.51553759723002
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone41",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone41 accessories"
+ }
+ },
+ "system": "drone system 41",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05027786898233,
+ 39.17719948359332
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone42",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone42 accessories"
+ }
+ },
+ "system": "drone system 42",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56789626686711,
+ 39.63333580435278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone43",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone43 accessories"
+ }
+ },
+ "system": "drone system 43",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6123670512271,
+ 38.568669422834716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone44",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone44 accessories"
+ }
+ },
+ "system": "drone system 44",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3938980639842,
+ 38.16073058620304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone45",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone45 accessories"
+ }
+ },
+ "system": "drone system 45",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63005334262732,
+ 38.90411325638079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone46",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone46 accessories"
+ }
+ },
+ "system": "drone system 46",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4588102900876,
+ 39.03008553519894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone47",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone47 accessories"
+ }
+ },
+ "system": "drone system 47",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65954597882492,
+ 39.34923795894198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone48",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone48 accessories"
+ }
+ },
+ "system": "drone system 48",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42792142338685,
+ 39.425550984405035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone49",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone49 accessories"
+ }
+ },
+ "system": "drone system 49",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22114046704822,
+ 38.54237683835867
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone50",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone50 accessories"
+ }
+ },
+ "system": "drone system 50",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74961647405983,
+ 38.14552214603359
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone51",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone51 accessories"
+ }
+ },
+ "system": "drone system 51",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26147729399406,
+ 39.41736778193106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone52",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone52 accessories"
+ }
+ },
+ "system": "drone system 52",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62687407667401,
+ 38.357884783703184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone53",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone53 accessories"
+ }
+ },
+ "system": "drone system 53",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37726737402593,
+ 39.12914775944286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone54",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone54 accessories"
+ }
+ },
+ "system": "drone system 54",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71417117378839,
+ 38.72595912601767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone55",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone55 accessories"
+ }
+ },
+ "system": "drone system 55",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87297062435468,
+ 39.17925738699424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone56",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone56 accessories"
+ }
+ },
+ "system": "drone system 56",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59113124286262,
+ 38.94726406931123
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone57",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone57 accessories"
+ }
+ },
+ "system": "drone system 57",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57468540825549,
+ 38.885355766430074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone58",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone58 accessories"
+ }
+ },
+ "system": "drone system 58",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57951645250297,
+ 39.183764652423335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone59",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone59 accessories"
+ }
+ },
+ "system": "drone system 59",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17280355033196,
+ 38.38190607962512
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone60",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone60 accessories"
+ }
+ },
+ "system": "drone system 60",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77437470459277,
+ 38.555449982452004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone61",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone61 accessories"
+ }
+ },
+ "system": "drone system 61",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92722798895873,
+ 38.04810251719032
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone62",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone62 accessories"
+ }
+ },
+ "system": "drone system 62",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68153365541711,
+ 39.103204919712844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone63",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone63 accessories"
+ }
+ },
+ "system": "drone system 63",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7335928306352,
+ 38.73570299079782
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone64",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone64 accessories"
+ }
+ },
+ "system": "drone system 64",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23054437024913,
+ 39.22970669410591
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone65",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone65 accessories"
+ }
+ },
+ "system": "drone system 65",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3247852505714,
+ 38.43498253612476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone66",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone66 accessories"
+ }
+ },
+ "system": "drone system 66",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6132855183095,
+ 39.4140716627871
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone67",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone67 accessories"
+ }
+ },
+ "system": "drone system 67",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40490282227088,
+ 38.971211059489875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone68",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone68 accessories"
+ }
+ },
+ "system": "drone system 68",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06789456433962,
+ 38.702043479571024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone69",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone69 accessories"
+ }
+ },
+ "system": "drone system 69",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52296051001467,
+ 39.447441235144964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone70",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone70 accessories"
+ }
+ },
+ "system": "drone system 70",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5428164475372,
+ 38.21155236568049
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone71",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone71 accessories"
+ }
+ },
+ "system": "drone system 71",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39465371215218,
+ 39.708842005312846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone72",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone72 accessories"
+ }
+ },
+ "system": "drone system 72",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8599619473664,
+ 38.403522617415675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone73",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone73 accessories"
+ }
+ },
+ "system": "drone system 73",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07911071660715,
+ 39.393248927041206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone74",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone74 accessories"
+ }
+ },
+ "system": "drone system 74",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6653329688488,
+ 39.11705524056096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone75",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone75 accessories"
+ }
+ },
+ "system": "drone system 75",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83493696669365,
+ 39.25357038175847
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone76",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone76 accessories"
+ }
+ },
+ "system": "drone system 76",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51118167123947,
+ 39.55362855920544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone77",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone77 accessories"
+ }
+ },
+ "system": "drone system 77",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3363598517116,
+ 38.39738950868552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone78",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone78 accessories"
+ }
+ },
+ "system": "drone system 78",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11228187367291,
+ 38.66481725825187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone79",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone79 accessories"
+ }
+ },
+ "system": "drone system 79",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75942236388687,
+ 38.78638726496947
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone80",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone80 accessories"
+ }
+ },
+ "system": "drone system 80",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63045442336323,
+ 39.07823215829882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone81",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone81 accessories"
+ }
+ },
+ "system": "drone system 81",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7894248456428,
+ 38.35955868676469
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone82",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone82 accessories"
+ }
+ },
+ "system": "drone system 82",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74814150651218,
+ 38.68063605079477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone83",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone83 accessories"
+ }
+ },
+ "system": "drone system 83",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51322682843828,
+ 39.27433629043295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone84",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone84 accessories"
+ }
+ },
+ "system": "drone system 84",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07543436426593,
+ 39.39931864094304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone85",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone85 accessories"
+ }
+ },
+ "system": "drone system 85",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19120346778443,
+ 39.67178162804639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone86",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone86 accessories"
+ }
+ },
+ "system": "drone system 86",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18736259358683,
+ 38.549801755318306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone87",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone87 accessories"
+ }
+ },
+ "system": "drone system 87",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90262573403692,
+ 38.63356277180931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone88",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone88 accessories"
+ }
+ },
+ "system": "drone system 88",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6165356321169,
+ 38.75581361911336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone89",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone89 accessories"
+ }
+ },
+ "system": "drone system 89",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38455546117227,
+ 38.54678445731336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone90",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone90 accessories"
+ }
+ },
+ "system": "drone system 90",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51453551280107,
+ 39.65515005229302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone91",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone91 accessories"
+ }
+ },
+ "system": "drone system 91",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81391684883695,
+ 38.81858103494648
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone92",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone92 accessories"
+ }
+ },
+ "system": "drone system 92",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57476834561598,
+ 38.225954044268484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone93",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone93 accessories"
+ }
+ },
+ "system": "drone system 93",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.671601641214,
+ 38.815681328127255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone94",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone94 accessories"
+ }
+ },
+ "system": "drone system 94",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76634320604032,
+ 39.124462079940706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone95",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone95 accessories"
+ }
+ },
+ "system": "drone system 95",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0625553785894,
+ 38.417038038120886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone96",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone96 accessories"
+ }
+ },
+ "system": "drone system 96",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18045784679198,
+ 39.14733938491545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone97",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone97 accessories"
+ }
+ },
+ "system": "drone system 97",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90560346628217,
+ 38.835248862180464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone98",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone98 accessories"
+ }
+ },
+ "system": "drone system 98",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41561677937463,
+ 38.84564758524078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone99",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone99 accessories"
+ }
+ },
+ "system": "drone system 99",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9478472295272,
+ 39.36260148535808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone100",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone100 accessories"
+ }
+ },
+ "system": "drone system 100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86786417457802,
+ 39.306472974659364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone101",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone101 accessories"
+ }
+ },
+ "system": "drone system 101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34446776536839,
+ 38.76277866783866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone102",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone102 accessories"
+ }
+ },
+ "system": "drone system 102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39020744669403,
+ 39.418976811949136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone103",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone103 accessories"
+ }
+ },
+ "system": "drone system 103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1259827816875,
+ 38.359431284637026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone104",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone104 accessories"
+ }
+ },
+ "system": "drone system 104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40149505288775,
+ 38.60792384603339
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone105",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone105 accessories"
+ }
+ },
+ "system": "drone system 105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77250752229571,
+ 38.7806782076182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone106",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone106 accessories"
+ }
+ },
+ "system": "drone system 106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90141592079955,
+ 38.40879515387677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone107",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone107 accessories"
+ }
+ },
+ "system": "drone system 107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31935604445677,
+ 38.81982722561532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone108",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone108 accessories"
+ }
+ },
+ "system": "drone system 108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70247336085227,
+ 38.6308769769383
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone109",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone109 accessories"
+ }
+ },
+ "system": "drone system 109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19294651437497,
+ 39.04009523575333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone110",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone110 accessories"
+ }
+ },
+ "system": "drone system 110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20599128429971,
+ 39.02273764224261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone111",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone111 accessories"
+ }
+ },
+ "system": "drone system 111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72524526182936,
+ 39.197241151158806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone112",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone112 accessories"
+ }
+ },
+ "system": "drone system 112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23350289280093,
+ 39.026991044267085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone113",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone113 accessories"
+ }
+ },
+ "system": "drone system 113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3645279244678,
+ 38.78469453643852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone114",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone114 accessories"
+ }
+ },
+ "system": "drone system 114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98355556467284,
+ 38.607918205022095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone115",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone115 accessories"
+ }
+ },
+ "system": "drone system 115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24148481463133,
+ 38.41150429472068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone116",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone116 accessories"
+ }
+ },
+ "system": "drone system 116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83558943192753,
+ 38.95990953297448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone117",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone117 accessories"
+ }
+ },
+ "system": "drone system 117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12816977771101,
+ 38.668838529573016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone118",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone118 accessories"
+ }
+ },
+ "system": "drone system 118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75172187155471,
+ 39.6414742191914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone119",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone119 accessories"
+ }
+ },
+ "system": "drone system 119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60485818307775,
+ 39.43854440768154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone120",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone120 accessories"
+ }
+ },
+ "system": "drone system 120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61249022230291,
+ 38.263997697793464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone121",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone121 accessories"
+ }
+ },
+ "system": "drone system 121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83826848015946,
+ 38.82456263708122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone122",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone122 accessories"
+ }
+ },
+ "system": "drone system 122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61217502645552,
+ 39.29678259553601
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone123",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone123 accessories"
+ }
+ },
+ "system": "drone system 123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71797703396174,
+ 39.331080112884365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone124",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone124 accessories"
+ }
+ },
+ "system": "drone system 124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55516818629103,
+ 38.390598764950994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone125",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone125 accessories"
+ }
+ },
+ "system": "drone system 125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07422632816194,
+ 38.18835057936126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone126",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone126 accessories"
+ }
+ },
+ "system": "drone system 126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35282335900607,
+ 39.1908905249402
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone127",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone127 accessories"
+ }
+ },
+ "system": "drone system 127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12985268158323,
+ 38.01548501417911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone128",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone128 accessories"
+ }
+ },
+ "system": "drone system 128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2479252998867,
+ 38.440985358227124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone129",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone129 accessories"
+ }
+ },
+ "system": "drone system 129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7278339619838,
+ 39.45531027214792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone130",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone130 accessories"
+ }
+ },
+ "system": "drone system 130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61454427290218,
+ 38.3260859353122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone131",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone131 accessories"
+ }
+ },
+ "system": "drone system 131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08573315630967,
+ 39.653010197434675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone132",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone132 accessories"
+ }
+ },
+ "system": "drone system 132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32634577270089,
+ 39.42848256640932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone133",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone133 accessories"
+ }
+ },
+ "system": "drone system 133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97719839840614,
+ 38.81796697279343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone134",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone134 accessories"
+ }
+ },
+ "system": "drone system 134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8658049986195,
+ 39.78168102894247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone135",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone135 accessories"
+ }
+ },
+ "system": "drone system 135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55878147020599,
+ 38.2985126761608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone136",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone136 accessories"
+ }
+ },
+ "system": "drone system 136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79090335319118,
+ 38.695182129559036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone137",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone137 accessories"
+ }
+ },
+ "system": "drone system 137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87509023771302,
+ 38.835653001852556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone138",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone138 accessories"
+ }
+ },
+ "system": "drone system 138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99670335902022,
+ 39.27515776872026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone139",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone139 accessories"
+ }
+ },
+ "system": "drone system 139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65935043816867,
+ 39.225140213713
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone140",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone140 accessories"
+ }
+ },
+ "system": "drone system 140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.089979861888,
+ 39.40359437498246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone141",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone141 accessories"
+ }
+ },
+ "system": "drone system 141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1962901222084,
+ 39.06081704545731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone142",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone142 accessories"
+ }
+ },
+ "system": "drone system 142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68748666908797,
+ 38.642340486482496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone143",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone143 accessories"
+ }
+ },
+ "system": "drone system 143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40869503264541,
+ 38.272618537183256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone144",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone144 accessories"
+ }
+ },
+ "system": "drone system 144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73058417694016,
+ 38.246306862461736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone145",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone145 accessories"
+ }
+ },
+ "system": "drone system 145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1596989653271,
+ 39.31530157072209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone146",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone146 accessories"
+ }
+ },
+ "system": "drone system 146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88645626198885,
+ 38.34364242859055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone147",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone147 accessories"
+ }
+ },
+ "system": "drone system 147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24727658537131,
+ 39.35548200348073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone148",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone148 accessories"
+ }
+ },
+ "system": "drone system 148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35027137054034,
+ 38.55748357543843
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone149",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone149 accessories"
+ }
+ },
+ "system": "drone system 149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66952968543444,
+ 39.42388392131072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone150",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone150 accessories"
+ }
+ },
+ "system": "drone system 150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89228239761329,
+ 39.01852998167514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone151",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone151 accessories"
+ }
+ },
+ "system": "drone system 151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61738298999587,
+ 38.49209537888145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone152",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone152 accessories"
+ }
+ },
+ "system": "drone system 152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1177756853364,
+ 39.28963776030291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone153",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone153 accessories"
+ }
+ },
+ "system": "drone system 153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56669080531233,
+ 38.602385610401875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone154",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone154 accessories"
+ }
+ },
+ "system": "drone system 154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04872068716011,
+ 39.12332336812486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone155",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone155 accessories"
+ }
+ },
+ "system": "drone system 155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40264754507498,
+ 38.79234305711202
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone156",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone156 accessories"
+ }
+ },
+ "system": "drone system 156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00101668581766,
+ 38.548326391702645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone157",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone157 accessories"
+ }
+ },
+ "system": "drone system 157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91265191526472,
+ 39.294182484749996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone158",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone158 accessories"
+ }
+ },
+ "system": "drone system 158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0389518624111,
+ 38.554347270592835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone159",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone159 accessories"
+ }
+ },
+ "system": "drone system 159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32444674221098,
+ 39.33587326010122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone160",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone160 accessories"
+ }
+ },
+ "system": "drone system 160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85964423293309,
+ 39.10588451983478
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone161",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone161 accessories"
+ }
+ },
+ "system": "drone system 161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69586910268926,
+ 38.08670181168778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone162",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone162 accessories"
+ }
+ },
+ "system": "drone system 162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35238657976177,
+ 38.74205436570923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone163",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone163 accessories"
+ }
+ },
+ "system": "drone system 163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51363098319811,
+ 38.38996543296938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone164",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone164 accessories"
+ }
+ },
+ "system": "drone system 164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63494759737524,
+ 39.18822027150989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone165",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone165 accessories"
+ }
+ },
+ "system": "drone system 165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8472943279283,
+ 38.6968214695488
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone166",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone166 accessories"
+ }
+ },
+ "system": "drone system 166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15228675241319,
+ 39.5671002551721
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone167",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone167 accessories"
+ }
+ },
+ "system": "drone system 167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52163724851543,
+ 39.27379119274937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone168",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone168 accessories"
+ }
+ },
+ "system": "drone system 168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92919987971491,
+ 38.55841376196156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone169",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone169 accessories"
+ }
+ },
+ "system": "drone system 169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99416873117616,
+ 38.845310182359164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone170",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone170 accessories"
+ }
+ },
+ "system": "drone system 170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40348528446573,
+ 38.129503004210854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone171",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone171 accessories"
+ }
+ },
+ "system": "drone system 171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74653192420534,
+ 38.62431353734956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone172",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone172 accessories"
+ }
+ },
+ "system": "drone system 172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46903529143458,
+ 39.51563061159761
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone173",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone173 accessories"
+ }
+ },
+ "system": "drone system 173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78274345717841,
+ 39.231098294618974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone174",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone174 accessories"
+ }
+ },
+ "system": "drone system 174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18754205962934,
+ 38.43218433540369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone175",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone175 accessories"
+ }
+ },
+ "system": "drone system 175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06441856585914,
+ 38.36899181404978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone176",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone176 accessories"
+ }
+ },
+ "system": "drone system 176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95345868366334,
+ 38.87927540615019
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone177",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone177 accessories"
+ }
+ },
+ "system": "drone system 177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.9241439328734,
+ 38.756519756827515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone178",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone178 accessories"
+ }
+ },
+ "system": "drone system 178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5996893272745,
+ 39.416529793330405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone179 accessories"
+ }
+ },
+ "system": "drone system 179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29677691873185,
+ 38.87523670202947
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone180",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone180 accessories"
+ }
+ },
+ "system": "drone system 180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01932990698558,
+ 39.436160969763954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone181",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone181 accessories"
+ }
+ },
+ "system": "drone system 181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19340552422734,
+ 38.17035670569204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone182",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone182 accessories"
+ }
+ },
+ "system": "drone system 182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77648899795905,
+ 39.26314625960172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone183",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone183 accessories"
+ }
+ },
+ "system": "drone system 183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96888889484102,
+ 38.92812154746342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone184",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone184 accessories"
+ }
+ },
+ "system": "drone system 184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31717230153366,
+ 38.34751011893611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone185",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone185 accessories"
+ }
+ },
+ "system": "drone system 185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1509473908262,
+ 38.646967766895415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone186",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone186 accessories"
+ }
+ },
+ "system": "drone system 186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18726575207864,
+ 39.19245505309366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone187",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone187 accessories"
+ }
+ },
+ "system": "drone system 187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56797050626874,
+ 38.96631430346484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone188",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone188 accessories"
+ }
+ },
+ "system": "drone system 188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48018664852901,
+ 38.22032827596878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone189",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone189 accessories"
+ }
+ },
+ "system": "drone system 189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3446059418608,
+ 39.137464592480825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone190 accessories"
+ }
+ },
+ "system": "drone system 190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50207350009175,
+ 38.448659838993905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone191",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone191 accessories"
+ }
+ },
+ "system": "drone system 191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29273360583323,
+ 38.267379496655046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone192",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone192 accessories"
+ }
+ },
+ "system": "drone system 192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44140679524504,
+ 39.56592583949474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone193",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone193 accessories"
+ }
+ },
+ "system": "drone system 193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26038150978675,
+ 39.564364441068825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone194",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone194 accessories"
+ }
+ },
+ "system": "drone system 194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85448834600828,
+ 38.701260306862714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone195",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone195 accessories"
+ }
+ },
+ "system": "drone system 195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7162974664289,
+ 38.18494642253192
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone196",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone196 accessories"
+ }
+ },
+ "system": "drone system 196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.090573081879,
+ 38.59707075108141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone197",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone197 accessories"
+ }
+ },
+ "system": "drone system 197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36235859516584,
+ 39.048861378336085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone198",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone198 accessories"
+ }
+ },
+ "system": "drone system 198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44354270720096,
+ 38.869887951962234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone199",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone199 accessories"
+ }
+ },
+ "system": "drone system 199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2862669112399,
+ 39.16070991909145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone200",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone200 accessories"
+ }
+ },
+ "system": "drone system 200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07164867949615,
+ 39.241863739607304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone201",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone201 accessories"
+ }
+ },
+ "system": "drone system 201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82787581361536,
+ 38.55312933248903
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone202",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone202 accessories"
+ }
+ },
+ "system": "drone system 202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48052983829076,
+ 38.30675887500865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone203",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone203 accessories"
+ }
+ },
+ "system": "drone system 203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41576435872383,
+ 39.67737806887403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone204",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone204 accessories"
+ }
+ },
+ "system": "drone system 204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3586103031069,
+ 38.41237039190552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone205",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone205 accessories"
+ }
+ },
+ "system": "drone system 205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51296456216707,
+ 38.87498267685467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone206",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone206 accessories"
+ }
+ },
+ "system": "drone system 206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33924375845085,
+ 38.457113407789855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone207",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone207 accessories"
+ }
+ },
+ "system": "drone system 207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80607527127596,
+ 38.204943222476885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone208",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone208 accessories"
+ }
+ },
+ "system": "drone system 208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05575003582803,
+ 39.26050247979599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone209",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone209 accessories"
+ }
+ },
+ "system": "drone system 209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71360172997808,
+ 39.14658008564309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone210",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone210 accessories"
+ }
+ },
+ "system": "drone system 210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3859406637406,
+ 38.69167717027159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone211",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone211 accessories"
+ }
+ },
+ "system": "drone system 211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49130418994135,
+ 38.739817000814035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone212",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone212 accessories"
+ }
+ },
+ "system": "drone system 212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7098015712012,
+ 39.170572525625765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone213",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone213 accessories"
+ }
+ },
+ "system": "drone system 213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48043997484817,
+ 39.128202436370835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone214",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone214 accessories"
+ }
+ },
+ "system": "drone system 214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07333067122912,
+ 39.265836047724314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone215 accessories"
+ }
+ },
+ "system": "drone system 215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35045104760795,
+ 38.71741384646315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone216",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone216 accessories"
+ }
+ },
+ "system": "drone system 216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37626901058017,
+ 38.16971666059979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone217",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone217 accessories"
+ }
+ },
+ "system": "drone system 217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63065533588173,
+ 39.18820471498133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone218",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone218 accessories"
+ }
+ },
+ "system": "drone system 218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74931531569428,
+ 38.18750458703674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone219",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone219 accessories"
+ }
+ },
+ "system": "drone system 219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68307662366033,
+ 39.29792098269649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone220",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone220 accessories"
+ }
+ },
+ "system": "drone system 220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5229059155365,
+ 38.35290420439042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone221",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone221 accessories"
+ }
+ },
+ "system": "drone system 221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16233095814962,
+ 39.145745359134466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone222",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone222 accessories"
+ }
+ },
+ "system": "drone system 222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24212620988652,
+ 38.71814347673582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone223",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone223 accessories"
+ }
+ },
+ "system": "drone system 223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21017703691615,
+ 39.2314479925418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone224",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone224 accessories"
+ }
+ },
+ "system": "drone system 224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5749888411768,
+ 39.66304916259482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone225 accessories"
+ }
+ },
+ "system": "drone system 225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50297641179756,
+ 38.82088784283969
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone226",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone226 accessories"
+ }
+ },
+ "system": "drone system 226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60097202942197,
+ 39.544657861476125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone227",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone227 accessories"
+ }
+ },
+ "system": "drone system 227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9704545416821,
+ 38.280993338745354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone228",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone228 accessories"
+ }
+ },
+ "system": "drone system 228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97459886603593,
+ 39.41622889844715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone229",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone229 accessories"
+ }
+ },
+ "system": "drone system 229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10820269912875,
+ 38.96945311827456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone230",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone230 accessories"
+ }
+ },
+ "system": "drone system 230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44912599561945,
+ 38.46355553871976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone231",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone231 accessories"
+ }
+ },
+ "system": "drone system 231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6302736479885,
+ 39.438857038666235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone232",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone232 accessories"
+ }
+ },
+ "system": "drone system 232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7665821513073,
+ 38.96144907198317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone233",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone233 accessories"
+ }
+ },
+ "system": "drone system 233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17156844377313,
+ 38.20829745042417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone234",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone234 accessories"
+ }
+ },
+ "system": "drone system 234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46338237517709,
+ 39.64961601217271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone235",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone235 accessories"
+ }
+ },
+ "system": "drone system 235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8514134270535,
+ 39.651626918523164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone236",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone236 accessories"
+ }
+ },
+ "system": "drone system 236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43911034602282,
+ 38.5198872020146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone237",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone237 accessories"
+ }
+ },
+ "system": "drone system 237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35104768197677,
+ 38.525237853324626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone238",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone238 accessories"
+ }
+ },
+ "system": "drone system 238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56318095062565,
+ 38.390451311887155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone239 accessories"
+ }
+ },
+ "system": "drone system 239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49776708613798,
+ 38.73239349096043
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone240",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone240 accessories"
+ }
+ },
+ "system": "drone system 240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40722043914742,
+ 38.665681116340075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone241",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone241 accessories"
+ }
+ },
+ "system": "drone system 241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66319459321372,
+ 38.32566164331361
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone242",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone242 accessories"
+ }
+ },
+ "system": "drone system 242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39705417130894,
+ 38.563838745904334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone243",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone243 accessories"
+ }
+ },
+ "system": "drone system 243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46920901358105,
+ 38.732670248224224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone244",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone244 accessories"
+ }
+ },
+ "system": "drone system 244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23878081637602,
+ 39.58189166659132
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone245",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone245 accessories"
+ }
+ },
+ "system": "drone system 245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23322258845052,
+ 38.75248253283458
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone246",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone246 accessories"
+ }
+ },
+ "system": "drone system 246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66630059012785,
+ 39.494942521382036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone247",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone247 accessories"
+ }
+ },
+ "system": "drone system 247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81179971287092,
+ 39.257863201773915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone248",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone248 accessories"
+ }
+ },
+ "system": "drone system 248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51369403328808,
+ 38.709012896457224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone249",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone249 accessories"
+ }
+ },
+ "system": "drone system 249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48441366950664,
+ 39.19616372235703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone250",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone250 accessories"
+ }
+ },
+ "system": "drone system 250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00780026013655,
+ 39.34836424121871
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone251",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone251 accessories"
+ }
+ },
+ "system": "drone system 251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74769461522276,
+ 39.4881697675079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone252",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone252 accessories"
+ }
+ },
+ "system": "drone system 252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54455469710281,
+ 39.28673654895725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone253",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone253 accessories"
+ }
+ },
+ "system": "drone system 253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79320502285297,
+ 39.276534184295166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone254",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone254 accessories"
+ }
+ },
+ "system": "drone system 254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27858146614179,
+ 38.71435485957456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone255",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone255 accessories"
+ }
+ },
+ "system": "drone system 255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27624129487921,
+ 39.36261436988794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone256",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone256 accessories"
+ }
+ },
+ "system": "drone system 256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5477502834009,
+ 39.04817082176808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone257",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone257 accessories"
+ }
+ },
+ "system": "drone system 257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72355747292156,
+ 38.28193595631397
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone258",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone258 accessories"
+ }
+ },
+ "system": "drone system 258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04424056013643,
+ 39.5735676303083
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone259",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone259 accessories"
+ }
+ },
+ "system": "drone system 259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43164363674966,
+ 38.915789218335135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone260",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone260 accessories"
+ }
+ },
+ "system": "drone system 260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70594741679008,
+ 39.349484000640196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone261",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone261 accessories"
+ }
+ },
+ "system": "drone system 261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43768023094108,
+ 39.08623567022141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone262",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone262 accessories"
+ }
+ },
+ "system": "drone system 262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54448254849909,
+ 38.60508983178243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone263",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone263 accessories"
+ }
+ },
+ "system": "drone system 263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71940709378072,
+ 39.083298874841354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone264",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone264 accessories"
+ }
+ },
+ "system": "drone system 264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86460279662622,
+ 38.13253825215366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone265",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone265 accessories"
+ }
+ },
+ "system": "drone system 265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44765813824755,
+ 38.995938683117764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone266",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone266 accessories"
+ }
+ },
+ "system": "drone system 266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66626497496657,
+ 38.173180443335006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone267",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone267 accessories"
+ }
+ },
+ "system": "drone system 267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75755153238921,
+ 39.14207278634456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone268",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone268 accessories"
+ }
+ },
+ "system": "drone system 268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17214314689316,
+ 39.0879804785374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone269",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone269 accessories"
+ }
+ },
+ "system": "drone system 269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77515366651474,
+ 38.967034761523266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone270",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone270 accessories"
+ }
+ },
+ "system": "drone system 270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16930124976362,
+ 38.72725329655173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone271",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone271 accessories"
+ }
+ },
+ "system": "drone system 271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92413343659807,
+ 38.19301085896103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone272",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone272 accessories"
+ }
+ },
+ "system": "drone system 272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52983248981825,
+ 38.89918410936395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone273",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone273 accessories"
+ }
+ },
+ "system": "drone system 273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2643652582337,
+ 39.3030939338935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone274",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone274 accessories"
+ }
+ },
+ "system": "drone system 274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68560218056072,
+ 39.2557245458595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone275",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone275 accessories"
+ }
+ },
+ "system": "drone system 275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6176005163672,
+ 38.45366379440313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone276",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone276 accessories"
+ }
+ },
+ "system": "drone system 276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24101584437584,
+ 39.14063107707709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone277",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone277 accessories"
+ }
+ },
+ "system": "drone system 277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62811120159412,
+ 38.749780229160955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone278",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone278 accessories"
+ }
+ },
+ "system": "drone system 278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45784812284215,
+ 38.456648596061704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone279",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone279 accessories"
+ }
+ },
+ "system": "drone system 279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34708524513321,
+ 39.578411703881734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone280",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone280 accessories"
+ }
+ },
+ "system": "drone system 280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74511576901463,
+ 38.6284788781419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone281",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone281 accessories"
+ }
+ },
+ "system": "drone system 281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56207529856407,
+ 38.58018924573361
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone282",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone282 accessories"
+ }
+ },
+ "system": "drone system 282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77149559496645,
+ 39.54663562867721
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone283",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone283 accessories"
+ }
+ },
+ "system": "drone system 283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6147841617216,
+ 38.60407245310603
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone284",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone284 accessories"
+ }
+ },
+ "system": "drone system 284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27274969896213,
+ 38.72933743359779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone285",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone285 accessories"
+ }
+ },
+ "system": "drone system 285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90879093643039,
+ 38.69164808431296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone286",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone286 accessories"
+ }
+ },
+ "system": "drone system 286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36035001636289,
+ 38.862740588483646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone287",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone287 accessories"
+ }
+ },
+ "system": "drone system 287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48792824983697,
+ 38.36589087651592
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone288",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone288 accessories"
+ }
+ },
+ "system": "drone system 288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89793315946027,
+ 38.86677394944216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone289",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone289 accessories"
+ }
+ },
+ "system": "drone system 289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07891718151316,
+ 39.52241276345673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone290",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone290 accessories"
+ }
+ },
+ "system": "drone system 290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62538413459566,
+ 38.486050646858516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone291",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone291 accessories"
+ }
+ },
+ "system": "drone system 291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92240813343507,
+ 39.560558729863814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone292",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone292 accessories"
+ }
+ },
+ "system": "drone system 292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56888672094522,
+ 39.02634753371712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone293",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone293 accessories"
+ }
+ },
+ "system": "drone system 293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35065594969234,
+ 39.42053043988058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone294",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone294 accessories"
+ }
+ },
+ "system": "drone system 294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75818104308469,
+ 39.56017246065433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone295",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone295 accessories"
+ }
+ },
+ "system": "drone system 295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80449303535451,
+ 38.287923091439694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone296",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone296 accessories"
+ }
+ },
+ "system": "drone system 296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3864584185867,
+ 38.613424587123355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone297",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone297 accessories"
+ }
+ },
+ "system": "drone system 297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02638135864217,
+ 38.8039824300343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone298",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone298 accessories"
+ }
+ },
+ "system": "drone system 298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25066402529416,
+ 38.741441386226725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone299",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone299 accessories"
+ }
+ },
+ "system": "drone system 299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15686638012555,
+ 38.624567497960115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone300",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone300 accessories"
+ }
+ },
+ "system": "drone system 300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59587743200959,
+ 38.60837413897997
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone301",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone301 accessories"
+ }
+ },
+ "system": "drone system 301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93777408997778,
+ 39.78776977715556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone302",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone302 accessories"
+ }
+ },
+ "system": "drone system 302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43059481753517,
+ 39.00174719909297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone303",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone303 accessories"
+ }
+ },
+ "system": "drone system 303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6397973526499,
+ 38.45446162841558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone304",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone304 accessories"
+ }
+ },
+ "system": "drone system 304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34187405794056,
+ 38.34741141920247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone305",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone305 accessories"
+ }
+ },
+ "system": "drone system 305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5707977055657,
+ 38.962323973416524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone306",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone306 accessories"
+ }
+ },
+ "system": "drone system 306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27409028818708,
+ 39.328105157730235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone307",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone307 accessories"
+ }
+ },
+ "system": "drone system 307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4744319957016,
+ 38.77367150224395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone308",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone308 accessories"
+ }
+ },
+ "system": "drone system 308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41983239803884,
+ 38.355683722524866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone309",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone309 accessories"
+ }
+ },
+ "system": "drone system 309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46564590314424,
+ 38.451970095627246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone310",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone310 accessories"
+ }
+ },
+ "system": "drone system 310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51935597337449,
+ 38.53841755296253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone311",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone311 accessories"
+ }
+ },
+ "system": "drone system 311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70913141709147,
+ 39.356943222952424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone312",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone312 accessories"
+ }
+ },
+ "system": "drone system 312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36211286917393,
+ 38.52647713445097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone313 accessories"
+ }
+ },
+ "system": "drone system 313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16695220608318,
+ 38.879260571452505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone314",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone314 accessories"
+ }
+ },
+ "system": "drone system 314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69620041243583,
+ 38.596675436539485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone315",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone315 accessories"
+ }
+ },
+ "system": "drone system 315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69794623188173,
+ 38.78399392104635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone316",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone316 accessories"
+ }
+ },
+ "system": "drone system 316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58656858051714,
+ 39.510727508886596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone317",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone317 accessories"
+ }
+ },
+ "system": "drone system 317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70509524203568,
+ 39.22908570327971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone318",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone318 accessories"
+ }
+ },
+ "system": "drone system 318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30217931507978,
+ 39.012877590888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone319",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone319 accessories"
+ }
+ },
+ "system": "drone system 319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52893546191112,
+ 38.747913391202836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone320",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone320 accessories"
+ }
+ },
+ "system": "drone system 320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65887793197619,
+ 38.4893064017667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone321",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone321 accessories"
+ }
+ },
+ "system": "drone system 321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2686447017636,
+ 39.199823425465766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone322",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone322 accessories"
+ }
+ },
+ "system": "drone system 322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2781426445486,
+ 38.11267506166511
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone323",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone323 accessories"
+ }
+ },
+ "system": "drone system 323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71302584078526,
+ 39.157519522157344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone324",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone324 accessories"
+ }
+ },
+ "system": "drone system 324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.769173565469,
+ 38.701968401169474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone325",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone325 accessories"
+ }
+ },
+ "system": "drone system 325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7727407812474,
+ 39.70802919679474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone326",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone326 accessories"
+ }
+ },
+ "system": "drone system 326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72632704512873,
+ 39.72177447351332
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone327",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone327 accessories"
+ }
+ },
+ "system": "drone system 327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7962271770653,
+ 38.592211297419595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone328",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone328 accessories"
+ }
+ },
+ "system": "drone system 328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72398170597185,
+ 39.72681541295813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone329",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone329 accessories"
+ }
+ },
+ "system": "drone system 329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48923351653137,
+ 38.46035953271123
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone330",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone330 accessories"
+ }
+ },
+ "system": "drone system 330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58408049048627,
+ 39.006072878025655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone331",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone331 accessories"
+ }
+ },
+ "system": "drone system 331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27700303767365,
+ 39.03705895933101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone332",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone332 accessories"
+ }
+ },
+ "system": "drone system 332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8296838263959,
+ 38.23036856365046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone333",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone333 accessories"
+ }
+ },
+ "system": "drone system 333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88802592776032,
+ 39.06562827132623
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone334",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone334 accessories"
+ }
+ },
+ "system": "drone system 334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58181106548084,
+ 39.01512835094723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone335",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone335 accessories"
+ }
+ },
+ "system": "drone system 335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83279714281848,
+ 38.80122208330366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone336",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone336 accessories"
+ }
+ },
+ "system": "drone system 336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79664128906111,
+ 38.34190496964221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone337",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone337 accessories"
+ }
+ },
+ "system": "drone system 337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69785752850997,
+ 39.391386538561406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone338",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone338 accessories"
+ }
+ },
+ "system": "drone system 338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55028586105952,
+ 39.018219941907034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone339",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone339 accessories"
+ }
+ },
+ "system": "drone system 339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33946922189055,
+ 38.40629827106809
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone340",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone340 accessories"
+ }
+ },
+ "system": "drone system 340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61721672814757,
+ 38.729337821404314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone341",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone341 accessories"
+ }
+ },
+ "system": "drone system 341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24240039545482,
+ 38.544720975705786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone342",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone342 accessories"
+ }
+ },
+ "system": "drone system 342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59097662568246,
+ 39.31104926884385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone343",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone343 accessories"
+ }
+ },
+ "system": "drone system 343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73087743803187,
+ 38.36121970408288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone344",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone344 accessories"
+ }
+ },
+ "system": "drone system 344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42885306904775,
+ 39.17412676738854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone345",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone345 accessories"
+ }
+ },
+ "system": "drone system 345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11286163468277,
+ 39.29118526312818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone346",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone346 accessories"
+ }
+ },
+ "system": "drone system 346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17591073807114,
+ 38.42505132940156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone347",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone347 accessories"
+ }
+ },
+ "system": "drone system 347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24505421336376,
+ 38.98958793815759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone348",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone348 accessories"
+ }
+ },
+ "system": "drone system 348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33291533381471,
+ 39.02733153921518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone349",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone349 accessories"
+ }
+ },
+ "system": "drone system 349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28352358941765,
+ 38.70498805039351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone350",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone350 accessories"
+ }
+ },
+ "system": "drone system 350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70292626245913,
+ 38.12055396914809
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone351",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone351 accessories"
+ }
+ },
+ "system": "drone system 351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47436601699684,
+ 39.65809027375267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone352",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone352 accessories"
+ }
+ },
+ "system": "drone system 352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41619384145454,
+ 39.072956602511795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone353",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone353 accessories"
+ }
+ },
+ "system": "drone system 353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20050619893352,
+ 39.13940031742828
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone354",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone354 accessories"
+ }
+ },
+ "system": "drone system 354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8147428331947,
+ 38.499532880288335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone355",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone355 accessories"
+ }
+ },
+ "system": "drone system 355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20432900716112,
+ 39.4775261955763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone356",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone356 accessories"
+ }
+ },
+ "system": "drone system 356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48814493630621,
+ 38.828999816058754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone357",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone357 accessories"
+ }
+ },
+ "system": "drone system 357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2894185401077,
+ 39.1901954994631
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone358 accessories"
+ }
+ },
+ "system": "drone system 358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27249705131115,
+ 38.80181268958133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone359",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone359 accessories"
+ }
+ },
+ "system": "drone system 359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07792970414759,
+ 38.550693258150815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone360",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone360 accessories"
+ }
+ },
+ "system": "drone system 360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30184697107128,
+ 38.90507519934506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone361",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone361 accessories"
+ }
+ },
+ "system": "drone system 361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52985265888718,
+ 38.628226226051424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone362",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone362 accessories"
+ }
+ },
+ "system": "drone system 362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2317561017496,
+ 38.76486903928266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone363",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone363 accessories"
+ }
+ },
+ "system": "drone system 363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9932371296764,
+ 38.62209503202429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone364",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone364 accessories"
+ }
+ },
+ "system": "drone system 364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84479228426144,
+ 38.52597611538802
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone365",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone365 accessories"
+ }
+ },
+ "system": "drone system 365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27724158493223,
+ 39.33648057117959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone366",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone366 accessories"
+ }
+ },
+ "system": "drone system 366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47331545389666,
+ 39.56249734047211
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone367",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone367 accessories"
+ }
+ },
+ "system": "drone system 367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4489804063542,
+ 39.198980253107486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone368",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone368 accessories"
+ }
+ },
+ "system": "drone system 368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87962369710318,
+ 38.97576753580244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone369",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone369 accessories"
+ }
+ },
+ "system": "drone system 369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99032262224773,
+ 38.049140899092436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone370",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone370 accessories"
+ }
+ },
+ "system": "drone system 370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65580839981293,
+ 38.45082529802672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone371",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone371 accessories"
+ }
+ },
+ "system": "drone system 371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52961424728308,
+ 38.50362938376459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone372",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone372 accessories"
+ }
+ },
+ "system": "drone system 372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4401119335059,
+ 39.14547280381604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone373",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone373 accessories"
+ }
+ },
+ "system": "drone system 373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99532081236052,
+ 39.778440426083534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone374",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone374 accessories"
+ }
+ },
+ "system": "drone system 374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55660164049513,
+ 38.190136175762674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone375",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone375 accessories"
+ }
+ },
+ "system": "drone system 375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27712905357488,
+ 38.90834737815599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone376",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone376 accessories"
+ }
+ },
+ "system": "drone system 376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13047721235166,
+ 38.23276815729166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone377",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone377 accessories"
+ }
+ },
+ "system": "drone system 377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53513134184143,
+ 39.40883794178094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone378",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone378 accessories"
+ }
+ },
+ "system": "drone system 378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43058812276252,
+ 38.80005544950988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone379",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone379 accessories"
+ }
+ },
+ "system": "drone system 379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36910387882129,
+ 39.24717541114126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone380",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone380 accessories"
+ }
+ },
+ "system": "drone system 380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35065252759574,
+ 38.781980905245526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone381",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone381 accessories"
+ }
+ },
+ "system": "drone system 381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77070543386272,
+ 39.05199669833431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone382",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone382 accessories"
+ }
+ },
+ "system": "drone system 382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30724962090076,
+ 39.272101895414295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone383",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone383 accessories"
+ }
+ },
+ "system": "drone system 383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23815296177025,
+ 38.59588818631098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone384",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone384 accessories"
+ }
+ },
+ "system": "drone system 384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31117656281951,
+ 39.063231012880124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone385",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone385 accessories"
+ }
+ },
+ "system": "drone system 385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29911156952716,
+ 38.66210407308254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone386",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone386 accessories"
+ }
+ },
+ "system": "drone system 386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65924531853614,
+ 38.47148195706071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone387",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone387 accessories"
+ }
+ },
+ "system": "drone system 387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87057981675851,
+ 38.706581901568896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone388",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone388 accessories"
+ }
+ },
+ "system": "drone system 388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29032402092204,
+ 39.24417046309514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone389",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone389 accessories"
+ }
+ },
+ "system": "drone system 389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23628616977145,
+ 39.37337736499156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone390",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone390 accessories"
+ }
+ },
+ "system": "drone system 390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07113871407446,
+ 39.412802008113026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone391",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone391 accessories"
+ }
+ },
+ "system": "drone system 391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74425688436679,
+ 38.756754217564755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone392",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone392 accessories"
+ }
+ },
+ "system": "drone system 392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6673732478959,
+ 39.28931255206797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone393",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone393 accessories"
+ }
+ },
+ "system": "drone system 393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2396287277847,
+ 38.26949664790768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone394",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone394 accessories"
+ }
+ },
+ "system": "drone system 394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1897477058049,
+ 39.70610626431636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone395",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone395 accessories"
+ }
+ },
+ "system": "drone system 395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2928017809212,
+ 39.39847841768826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone396",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone396 accessories"
+ }
+ },
+ "system": "drone system 396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98088154502034,
+ 38.37178418611772
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone397",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone397 accessories"
+ }
+ },
+ "system": "drone system 397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75235915505907,
+ 39.6137977425023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone398",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone398 accessories"
+ }
+ },
+ "system": "drone system 398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30456437196501,
+ 38.398111515576154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone399",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone399 accessories"
+ }
+ },
+ "system": "drone system 399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69108730414588,
+ 38.82269165998408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone400",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone400 accessories"
+ }
+ },
+ "system": "drone system 400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2210668702458,
+ 38.72867543699273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone401",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone401 accessories"
+ }
+ },
+ "system": "drone system 401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.596803529533,
+ 38.76746499646002
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone402",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone402 accessories"
+ }
+ },
+ "system": "drone system 402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27164849909121,
+ 39.14778055052163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone403",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone403 accessories"
+ }
+ },
+ "system": "drone system 403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67385169276152,
+ 39.32569060170198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone404",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone404 accessories"
+ }
+ },
+ "system": "drone system 404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86341575158765,
+ 38.37783597154163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone405",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone405 accessories"
+ }
+ },
+ "system": "drone system 405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54233649075637,
+ 39.6442746844363
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone406",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone406 accessories"
+ }
+ },
+ "system": "drone system 406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30209669373356,
+ 38.6021007395002
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone407",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone407 accessories"
+ }
+ },
+ "system": "drone system 407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50060517913522,
+ 38.65851905525825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone408",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone408 accessories"
+ }
+ },
+ "system": "drone system 408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8560374167526,
+ 39.13227574967658
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone409",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone409 accessories"
+ }
+ },
+ "system": "drone system 409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65649149502384,
+ 39.270911865363175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone410",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone410 accessories"
+ }
+ },
+ "system": "drone system 410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89488169210834,
+ 38.60943912278311
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone411",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone411 accessories"
+ }
+ },
+ "system": "drone system 411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71324853609102,
+ 38.54279848181467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone412",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone412 accessories"
+ }
+ },
+ "system": "drone system 412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89941691000828,
+ 38.91895123219
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone413",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone413 accessories"
+ }
+ },
+ "system": "drone system 413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39230525913761,
+ 39.51463751939954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone414",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone414 accessories"
+ }
+ },
+ "system": "drone system 414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62953045938082,
+ 39.12413641781047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone415",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone415 accessories"
+ }
+ },
+ "system": "drone system 415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15016453480438,
+ 39.679116430931316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone416",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone416 accessories"
+ }
+ },
+ "system": "drone system 416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21392200566905,
+ 39.101900565136816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone417",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone417 accessories"
+ }
+ },
+ "system": "drone system 417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85319907395537,
+ 38.73703480280337
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone418",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone418 accessories"
+ }
+ },
+ "system": "drone system 418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30133745694408,
+ 38.58380768867458
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone419",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone419 accessories"
+ }
+ },
+ "system": "drone system 419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09887299095267,
+ 38.92519676548627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone420",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone420 accessories"
+ }
+ },
+ "system": "drone system 420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14424254245881,
+ 38.14758177265503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone421",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone421 accessories"
+ }
+ },
+ "system": "drone system 421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3440758765314,
+ 39.630598912532136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone422",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone422 accessories"
+ }
+ },
+ "system": "drone system 422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81376446668557,
+ 39.11145780718893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone423",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone423 accessories"
+ }
+ },
+ "system": "drone system 423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48655492241988,
+ 39.571540892483796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone424",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone424 accessories"
+ }
+ },
+ "system": "drone system 424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33397093652643,
+ 38.953948357213235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone425",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone425 accessories"
+ }
+ },
+ "system": "drone system 425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55043222139545,
+ 38.17520085967304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone426",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone426 accessories"
+ }
+ },
+ "system": "drone system 426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29804958132681,
+ 39.05314211534018
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone427",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone427 accessories"
+ }
+ },
+ "system": "drone system 427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74993881458869,
+ 38.613888583742565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone428",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone428 accessories"
+ }
+ },
+ "system": "drone system 428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05657931669899,
+ 39.21892931749864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone429",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone429 accessories"
+ }
+ },
+ "system": "drone system 429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3301826461254,
+ 39.21948608092308
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone430",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone430 accessories"
+ }
+ },
+ "system": "drone system 430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25386413984398,
+ 38.818680819958175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone431",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone431 accessories"
+ }
+ },
+ "system": "drone system 431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84369560836879,
+ 39.07133299414216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone432",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone432 accessories"
+ }
+ },
+ "system": "drone system 432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48260705919863,
+ 38.20269081238956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone433",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone433 accessories"
+ }
+ },
+ "system": "drone system 433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23653036741071,
+ 38.77760234084176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone434",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone434 accessories"
+ }
+ },
+ "system": "drone system 434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60620513940705,
+ 39.394487664678906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone435",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone435 accessories"
+ }
+ },
+ "system": "drone system 435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82274385167585,
+ 39.634395152971564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone436",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone436 accessories"
+ }
+ },
+ "system": "drone system 436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41178475117276,
+ 39.22343553161434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone437",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone437 accessories"
+ }
+ },
+ "system": "drone system 437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29721633291186,
+ 39.227466722678464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone438",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone438 accessories"
+ }
+ },
+ "system": "drone system 438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92798037161816,
+ 38.52042199086471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone439",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone439 accessories"
+ }
+ },
+ "system": "drone system 439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20240931207846,
+ 38.32897377818493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone440",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone440 accessories"
+ }
+ },
+ "system": "drone system 440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30853339311219,
+ 38.89679014458389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone441",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone441 accessories"
+ }
+ },
+ "system": "drone system 441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3660468149169,
+ 39.354613532454955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone442",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone442 accessories"
+ }
+ },
+ "system": "drone system 442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8391533989643,
+ 39.23450685098788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone443",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone443 accessories"
+ }
+ },
+ "system": "drone system 443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91752975662777,
+ 39.05715307848914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone444",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone444 accessories"
+ }
+ },
+ "system": "drone system 444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73238625059967,
+ 38.751071509387984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone445",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone445 accessories"
+ }
+ },
+ "system": "drone system 445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14876664174089,
+ 39.46863617750295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone446",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone446 accessories"
+ }
+ },
+ "system": "drone system 446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45481837067292,
+ 39.00830519831977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone447",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone447 accessories"
+ }
+ },
+ "system": "drone system 447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2154862690976,
+ 38.612577053234084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone448",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone448 accessories"
+ }
+ },
+ "system": "drone system 448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36775771323549,
+ 38.71375878993825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone449",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone449 accessories"
+ }
+ },
+ "system": "drone system 449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11319991117225,
+ 39.32992062102344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone450",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone450 accessories"
+ }
+ },
+ "system": "drone system 450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97751592038178,
+ 38.654357166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone451",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone451 accessories"
+ }
+ },
+ "system": "drone system 451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31987957265302,
+ 39.15856868098485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone452",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone452 accessories"
+ }
+ },
+ "system": "drone system 452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6230406521348,
+ 39.44556008210244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone453",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone453 accessories"
+ }
+ },
+ "system": "drone system 453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79422379140298,
+ 39.52365374562533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone454",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone454 accessories"
+ }
+ },
+ "system": "drone system 454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18167681979737,
+ 38.75364286825808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone455",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone455 accessories"
+ }
+ },
+ "system": "drone system 455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57927464355917,
+ 39.01227041213958
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone456",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone456 accessories"
+ }
+ },
+ "system": "drone system 456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74984795400984,
+ 39.01125402013274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone457",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone457 accessories"
+ }
+ },
+ "system": "drone system 457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29424894294586,
+ 39.00494349382814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone458",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone458 accessories"
+ }
+ },
+ "system": "drone system 458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19166108132345,
+ 38.86542678547023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone459",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone459 accessories"
+ }
+ },
+ "system": "drone system 459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43208506283376,
+ 38.62440445748598
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone460",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone460 accessories"
+ }
+ },
+ "system": "drone system 460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39866809087295,
+ 38.64812631353589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone461",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone461 accessories"
+ }
+ },
+ "system": "drone system 461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7068672961295,
+ 38.72196374692932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone462",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone462 accessories"
+ }
+ },
+ "system": "drone system 462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76730285890926,
+ 39.10880926807483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone463",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone463 accessories"
+ }
+ },
+ "system": "drone system 463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32527738143361,
+ 39.57280323479066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone464",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone464 accessories"
+ }
+ },
+ "system": "drone system 464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54105260498932,
+ 38.45431796062751
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone465",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone465 accessories"
+ }
+ },
+ "system": "drone system 465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.577460125772,
+ 39.49282135591918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone466",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone466 accessories"
+ }
+ },
+ "system": "drone system 466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7131544465974,
+ 38.52670967885342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone467",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone467 accessories"
+ }
+ },
+ "system": "drone system 467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41398634622387,
+ 38.75138770018154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone468",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone468 accessories"
+ }
+ },
+ "system": "drone system 468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8294915729046,
+ 38.481073979982476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone469",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone469 accessories"
+ }
+ },
+ "system": "drone system 469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30291792109429,
+ 39.21953244984726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone470",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone470 accessories"
+ }
+ },
+ "system": "drone system 470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88395583811959,
+ 38.27585896510081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone471",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone471 accessories"
+ }
+ },
+ "system": "drone system 471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81103100103938,
+ 39.149354905789494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone472",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone472 accessories"
+ }
+ },
+ "system": "drone system 472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33812746036607,
+ 39.01260681091435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone473",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone473 accessories"
+ }
+ },
+ "system": "drone system 473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69630479010644,
+ 39.277343598815335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone474",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone474 accessories"
+ }
+ },
+ "system": "drone system 474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96557630659218,
+ 39.53442400611283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone475",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone475 accessories"
+ }
+ },
+ "system": "drone system 475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68471451684493,
+ 39.03774235309395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone476",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone476 accessories"
+ }
+ },
+ "system": "drone system 476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36936468090713,
+ 38.61276528919284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone477",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone477 accessories"
+ }
+ },
+ "system": "drone system 477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4622260346717,
+ 38.66399006836263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone478",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone478 accessories"
+ }
+ },
+ "system": "drone system 478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62523304828092,
+ 38.508212191264164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone479",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone479 accessories"
+ }
+ },
+ "system": "drone system 479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60731371529289,
+ 39.32825767226438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone480",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone480 accessories"
+ }
+ },
+ "system": "drone system 480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0942419710719,
+ 38.26225350293677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone481",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone481 accessories"
+ }
+ },
+ "system": "drone system 481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8085892861662,
+ 38.57300872051875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone482",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone482 accessories"
+ }
+ },
+ "system": "drone system 482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88209740953505,
+ 38.03097174292914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone483",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone483 accessories"
+ }
+ },
+ "system": "drone system 483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6465213154178,
+ 39.231304953718706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone484",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone484 accessories"
+ }
+ },
+ "system": "drone system 484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17410502163143,
+ 39.613875584037686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone485",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone485 accessories"
+ }
+ },
+ "system": "drone system 485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49680484572917,
+ 39.51955813786765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone486",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone486 accessories"
+ }
+ },
+ "system": "drone system 486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56690846742728,
+ 38.23033030174503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone487",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone487 accessories"
+ }
+ },
+ "system": "drone system 487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99253218121004,
+ 38.450366250606415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone488",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone488 accessories"
+ }
+ },
+ "system": "drone system 488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0466149296992,
+ 39.170301614194514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone489",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone489 accessories"
+ }
+ },
+ "system": "drone system 489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69437228971077,
+ 39.060690348509716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone490",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone490 accessories"
+ }
+ },
+ "system": "drone system 490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5951728262101,
+ 38.243738087555606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone491",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone491 accessories"
+ }
+ },
+ "system": "drone system 491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68322763225014,
+ 39.0627597373912
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone492",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone492 accessories"
+ }
+ },
+ "system": "drone system 492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27693512550877,
+ 39.64386570731513
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone493",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone493 accessories"
+ }
+ },
+ "system": "drone system 493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38522376997918,
+ 39.00921178218198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone494",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone494 accessories"
+ }
+ },
+ "system": "drone system 494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55149390446248,
+ 38.50394749407691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone495",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone495 accessories"
+ }
+ },
+ "system": "drone system 495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30400588657045,
+ 38.474143748394205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone496",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone496 accessories"
+ }
+ },
+ "system": "drone system 496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87385174565809,
+ 39.23556890638542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone497",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone497 accessories"
+ }
+ },
+ "system": "drone system 497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95893792747373,
+ 39.091046365764996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone498",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone498 accessories"
+ }
+ },
+ "system": "drone system 498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32652041999832,
+ 38.40238030016322
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone499",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone499 accessories"
+ }
+ },
+ "system": "drone system 499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4534556464067,
+ 38.6661331691169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone500",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone500 accessories"
+ }
+ },
+ "system": "drone system 500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65345269074481,
+ 38.63027873932436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone501",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone501 accessories"
+ }
+ },
+ "system": "drone system 501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73446434962197,
+ 39.105203386090196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone502",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone502 accessories"
+ }
+ },
+ "system": "drone system 502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18663069035661,
+ 38.67942058822077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone503",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone503 accessories"
+ }
+ },
+ "system": "drone system 503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86585869135155,
+ 38.66168854065164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone504",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone504 accessories"
+ }
+ },
+ "system": "drone system 504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07907996406077,
+ 38.47558323191128
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone505 accessories"
+ }
+ },
+ "system": "drone system 505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47552897923934,
+ 38.26369380878994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone506",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone506 accessories"
+ }
+ },
+ "system": "drone system 506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62675156420298,
+ 39.57384867543989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone507",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone507 accessories"
+ }
+ },
+ "system": "drone system 507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22483997094876,
+ 39.03886153843121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone508",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone508 accessories"
+ }
+ },
+ "system": "drone system 508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86085092973217,
+ 38.316082863799785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone509",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone509 accessories"
+ }
+ },
+ "system": "drone system 509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7645091513097,
+ 39.119093100993325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone510",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone510 accessories"
+ }
+ },
+ "system": "drone system 510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3536726269471,
+ 39.039631934189515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone511",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone511 accessories"
+ }
+ },
+ "system": "drone system 511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90018780982142,
+ 38.778575523583974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone512",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone512 accessories"
+ }
+ },
+ "system": "drone system 512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34398976529998,
+ 38.505475120773085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone513",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone513 accessories"
+ }
+ },
+ "system": "drone system 513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78095085909682,
+ 38.59922602827164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone514",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone514 accessories"
+ }
+ },
+ "system": "drone system 514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8818567432244,
+ 38.33647286085311
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone515",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone515 accessories"
+ }
+ },
+ "system": "drone system 515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28391147493669,
+ 38.547682795580435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone516",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone516 accessories"
+ }
+ },
+ "system": "drone system 516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0811171503732,
+ 39.74984800391536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone517",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone517 accessories"
+ }
+ },
+ "system": "drone system 517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11902681387704,
+ 39.237237207716475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone518",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone518 accessories"
+ }
+ },
+ "system": "drone system 518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49699615193187,
+ 39.15710111773548
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone519",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone519 accessories"
+ }
+ },
+ "system": "drone system 519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33697149293569,
+ 39.42080645481051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone520",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone520 accessories"
+ }
+ },
+ "system": "drone system 520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4232808095876,
+ 38.9056414465398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone521",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone521 accessories"
+ }
+ },
+ "system": "drone system 521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32314635409288,
+ 38.586897718772555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone522",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone522 accessories"
+ }
+ },
+ "system": "drone system 522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53484497796934,
+ 39.50819671363207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone523",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone523 accessories"
+ }
+ },
+ "system": "drone system 523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.652985928345,
+ 38.95951064265076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone524",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone524 accessories"
+ }
+ },
+ "system": "drone system 524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75183433916372,
+ 38.97514769141997
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone525",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone525 accessories"
+ }
+ },
+ "system": "drone system 525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45107901649749,
+ 39.383035066071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone526",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone526 accessories"
+ }
+ },
+ "system": "drone system 526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61275363797131,
+ 38.69156886939712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone527",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone527 accessories"
+ }
+ },
+ "system": "drone system 527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78255545218516,
+ 38.570384436617836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone528",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone528 accessories"
+ }
+ },
+ "system": "drone system 528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36575117882008,
+ 39.31805048917259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone529",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone529 accessories"
+ }
+ },
+ "system": "drone system 529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34977772958928,
+ 38.92392864758199
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone530",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone530 accessories"
+ }
+ },
+ "system": "drone system 530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88512478176224,
+ 38.7850338686626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone531",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone531 accessories"
+ }
+ },
+ "system": "drone system 531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3451682777388,
+ 38.503149836874826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone532",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone532 accessories"
+ }
+ },
+ "system": "drone system 532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22452959360308,
+ 39.204506695926604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone533",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone533 accessories"
+ }
+ },
+ "system": "drone system 533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91734908849057,
+ 38.9349117688862
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone534",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone534 accessories"
+ }
+ },
+ "system": "drone system 534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6212280014689,
+ 39.305613611309646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone535",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone535 accessories"
+ }
+ },
+ "system": "drone system 535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8176246212787,
+ 38.183725877300176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone536",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone536 accessories"
+ }
+ },
+ "system": "drone system 536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76098802687194,
+ 38.66607180893895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone537",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone537 accessories"
+ }
+ },
+ "system": "drone system 537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32094665722691,
+ 39.26931983244644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone538",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone538 accessories"
+ }
+ },
+ "system": "drone system 538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33207048478107,
+ 39.503263296680615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone539",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone539 accessories"
+ }
+ },
+ "system": "drone system 539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52719399124778,
+ 39.20858307825595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone540",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone540 accessories"
+ }
+ },
+ "system": "drone system 540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46063901733612,
+ 38.67805227743038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone541",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone541 accessories"
+ }
+ },
+ "system": "drone system 541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27299682160442,
+ 39.7590655976453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone542",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone542 accessories"
+ }
+ },
+ "system": "drone system 542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0474341355093,
+ 38.52518226368246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone543",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone543 accessories"
+ }
+ },
+ "system": "drone system 543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65273154665707,
+ 39.11078792353754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone544",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone544 accessories"
+ }
+ },
+ "system": "drone system 544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99488611356591,
+ 38.37534313260212
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone545",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone545 accessories"
+ }
+ },
+ "system": "drone system 545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26430040863987,
+ 38.82579097465378
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone546",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone546 accessories"
+ }
+ },
+ "system": "drone system 546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19815843153364,
+ 38.37896836389102
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone547",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone547 accessories"
+ }
+ },
+ "system": "drone system 547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48821394668225,
+ 38.71903729603279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone548",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone548 accessories"
+ }
+ },
+ "system": "drone system 548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54368083162245,
+ 38.22631562705079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone549",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone549 accessories"
+ }
+ },
+ "system": "drone system 549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90273644398053,
+ 38.71580640268881
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone550",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone550 accessories"
+ }
+ },
+ "system": "drone system 550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33112583589337,
+ 38.811987560756364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone551",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone551 accessories"
+ }
+ },
+ "system": "drone system 551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56431519190532,
+ 39.09094121917788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone552",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone552 accessories"
+ }
+ },
+ "system": "drone system 552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16264535717795,
+ 38.90267811076824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone553",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone553 accessories"
+ }
+ },
+ "system": "drone system 553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87928081575015,
+ 38.69054014533581
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone554",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone554 accessories"
+ }
+ },
+ "system": "drone system 554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63773837564592,
+ 38.93915487071237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone555",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone555 accessories"
+ }
+ },
+ "system": "drone system 555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7160742254432,
+ 39.06868962442895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone556",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone556 accessories"
+ }
+ },
+ "system": "drone system 556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6147887541919,
+ 38.59759627116708
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone557",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone557 accessories"
+ }
+ },
+ "system": "drone system 557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72496824060501,
+ 38.82571825477054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone558",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone558 accessories"
+ }
+ },
+ "system": "drone system 558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33689017283007,
+ 39.203509244929776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone559",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone559 accessories"
+ }
+ },
+ "system": "drone system 559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79251420240554,
+ 38.425840622200546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone560",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone560 accessories"
+ }
+ },
+ "system": "drone system 560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92575861545518,
+ 38.25221272701872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone561",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone561 accessories"
+ }
+ },
+ "system": "drone system 561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46941925918175,
+ 39.16207189475773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone562",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone562 accessories"
+ }
+ },
+ "system": "drone system 562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41868638851334,
+ 38.31957278560707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone563",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone563 accessories"
+ }
+ },
+ "system": "drone system 563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67690214811999,
+ 38.30202247132509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone564",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone564 accessories"
+ }
+ },
+ "system": "drone system 564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38707104809053,
+ 38.39245703187113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone565",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone565 accessories"
+ }
+ },
+ "system": "drone system 565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08454671712995,
+ 39.80344092180371
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone566 accessories"
+ }
+ },
+ "system": "drone system 566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95971994514991,
+ 38.47594823781883
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone567",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone567 accessories"
+ }
+ },
+ "system": "drone system 567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8565593342004,
+ 38.63406265583111
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone568",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone568 accessories"
+ }
+ },
+ "system": "drone system 568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79575458223944,
+ 38.70589214893737
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone569",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone569 accessories"
+ }
+ },
+ "system": "drone system 569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46884229489072,
+ 39.22754533523938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone570",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone570 accessories"
+ }
+ },
+ "system": "drone system 570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78647148175098,
+ 38.19598900318382
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone571",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone571 accessories"
+ }
+ },
+ "system": "drone system 571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67967957149418,
+ 38.95655266913997
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone572",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone572 accessories"
+ }
+ },
+ "system": "drone system 572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00646493645183,
+ 38.11359723036562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone573",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone573 accessories"
+ }
+ },
+ "system": "drone system 573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65539854209045,
+ 39.3956953362369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone574",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone574 accessories"
+ }
+ },
+ "system": "drone system 574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37531983467224,
+ 39.399494665262054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone575",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone575 accessories"
+ }
+ },
+ "system": "drone system 575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0141357858647,
+ 38.315823324119506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone576",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone576 accessories"
+ }
+ },
+ "system": "drone system 576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23380110923449,
+ 38.985447768660634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone577",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone577 accessories"
+ }
+ },
+ "system": "drone system 577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72276344473217,
+ 39.67579818153707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone578",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone578 accessories"
+ }
+ },
+ "system": "drone system 578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5245839893621,
+ 38.39213772276759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone579",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone579 accessories"
+ }
+ },
+ "system": "drone system 579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17312012897102,
+ 39.63368647929153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone580",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone580 accessories"
+ }
+ },
+ "system": "drone system 580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26641526775957,
+ 39.14136991412563
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone581",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone581 accessories"
+ }
+ },
+ "system": "drone system 581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38142059840413,
+ 38.570047454792864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone582",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone582 accessories"
+ }
+ },
+ "system": "drone system 582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24550354967685,
+ 38.725612318061614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone583",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone583 accessories"
+ }
+ },
+ "system": "drone system 583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72926612474316,
+ 38.4083250184163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone584",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone584 accessories"
+ }
+ },
+ "system": "drone system 584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62846001320986,
+ 38.91680976488316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone585",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone585 accessories"
+ }
+ },
+ "system": "drone system 585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76417332153743,
+ 39.69780291009283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone586",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone586 accessories"
+ }
+ },
+ "system": "drone system 586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17321687178278,
+ 38.69296031850246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone587",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone587 accessories"
+ }
+ },
+ "system": "drone system 587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7846496647252,
+ 38.534744402745396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone588",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone588 accessories"
+ }
+ },
+ "system": "drone system 588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4945695717199,
+ 39.0493777834265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone589",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone589 accessories"
+ }
+ },
+ "system": "drone system 589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57407155554145,
+ 38.41123710025654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone590",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone590 accessories"
+ }
+ },
+ "system": "drone system 590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52058156206434,
+ 38.77207710843713
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone591",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone591 accessories"
+ }
+ },
+ "system": "drone system 591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34901729755963,
+ 39.67024415034836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone592",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone592 accessories"
+ }
+ },
+ "system": "drone system 592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86260062266673,
+ 39.63835414844548
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone593",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone593 accessories"
+ }
+ },
+ "system": "drone system 593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63296209922196,
+ 39.22337358968115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone594",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone594 accessories"
+ }
+ },
+ "system": "drone system 594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54547701098524,
+ 39.4077348814053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone595",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone595 accessories"
+ }
+ },
+ "system": "drone system 595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67470152688631,
+ 38.932522170719714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone596",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone596 accessories"
+ }
+ },
+ "system": "drone system 596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55107566879884,
+ 39.09674836360576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone597",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone597 accessories"
+ }
+ },
+ "system": "drone system 597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51023465223697,
+ 39.14521133601233
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone598",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone598 accessories"
+ }
+ },
+ "system": "drone system 598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70901072107351,
+ 38.72827967458915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone599",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone599 accessories"
+ }
+ },
+ "system": "drone system 599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02309513165471,
+ 38.95394775437936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone600",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone600 accessories"
+ }
+ },
+ "system": "drone system 600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71895360020146,
+ 39.28673431089399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone601",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone601 accessories"
+ }
+ },
+ "system": "drone system 601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63426468443413,
+ 38.524313254928686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone602",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone602 accessories"
+ }
+ },
+ "system": "drone system 602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55064127029888,
+ 38.600774182090554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone603",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone603 accessories"
+ }
+ },
+ "system": "drone system 603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69559672938715,
+ 39.654181461806786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone604",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone604 accessories"
+ }
+ },
+ "system": "drone system 604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81037866778588,
+ 38.74694311644363
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone605",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone605 accessories"
+ }
+ },
+ "system": "drone system 605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51143189981791,
+ 38.51924075266338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone606",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone606 accessories"
+ }
+ },
+ "system": "drone system 606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6787545993372,
+ 39.39148462622203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone607",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone607 accessories"
+ }
+ },
+ "system": "drone system 607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02857129065532,
+ 38.83767209457159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone608",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone608 accessories"
+ }
+ },
+ "system": "drone system 608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0378995482826,
+ 39.44234822713399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone609",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone609 accessories"
+ }
+ },
+ "system": "drone system 609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27340134991493,
+ 38.15057713051854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone610",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone610 accessories"
+ }
+ },
+ "system": "drone system 610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74334839689756,
+ 38.75740285591
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone611",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone611 accessories"
+ }
+ },
+ "system": "drone system 611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07934500551612,
+ 39.59452475682053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone612",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone612 accessories"
+ }
+ },
+ "system": "drone system 612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17717732337942,
+ 39.08069716137232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone613",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone613 accessories"
+ }
+ },
+ "system": "drone system 613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39660919000411,
+ 39.43616752473313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone614",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone614 accessories"
+ }
+ },
+ "system": "drone system 614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54150848293236,
+ 39.26835712008109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone615",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone615 accessories"
+ }
+ },
+ "system": "drone system 615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35389552608036,
+ 39.38028791544428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone616",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone616 accessories"
+ }
+ },
+ "system": "drone system 616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68427987861467,
+ 38.326484847840874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone617",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone617 accessories"
+ }
+ },
+ "system": "drone system 617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42476392227783,
+ 38.589454252138445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone618",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone618 accessories"
+ }
+ },
+ "system": "drone system 618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31985402151484,
+ 38.93553393037241
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone619",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone619 accessories"
+ }
+ },
+ "system": "drone system 619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6542124372974,
+ 39.41032058578594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone620",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone620 accessories"
+ }
+ },
+ "system": "drone system 620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66282727162148,
+ 38.82829462719158
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone621",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone621 accessories"
+ }
+ },
+ "system": "drone system 621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25382131780812,
+ 38.79118010305381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone622",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone622 accessories"
+ }
+ },
+ "system": "drone system 622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40954588638932,
+ 39.534471868261036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone623",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone623 accessories"
+ }
+ },
+ "system": "drone system 623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7699676884655,
+ 38.44507026883859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone624",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone624 accessories"
+ }
+ },
+ "system": "drone system 624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39557621091878,
+ 39.108679231479975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone625",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone625 accessories"
+ }
+ },
+ "system": "drone system 625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72772923850758,
+ 38.56084905525205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone626",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone626 accessories"
+ }
+ },
+ "system": "drone system 626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16728786381053,
+ 39.12892807682293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone627",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone627 accessories"
+ }
+ },
+ "system": "drone system 627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07342725175752,
+ 39.368853574185806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone628",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone628 accessories"
+ }
+ },
+ "system": "drone system 628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86441664002628,
+ 38.04648111793427
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone629",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone629 accessories"
+ }
+ },
+ "system": "drone system 629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62832282174965,
+ 38.24787449306429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone630",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone630 accessories"
+ }
+ },
+ "system": "drone system 630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68130481248585,
+ 39.025966578044034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone631",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone631 accessories"
+ }
+ },
+ "system": "drone system 631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34555915346974,
+ 39.57335090750866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone632",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone632 accessories"
+ }
+ },
+ "system": "drone system 632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14745741615421,
+ 39.276484956858106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone633",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone633 accessories"
+ }
+ },
+ "system": "drone system 633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96149700169204,
+ 38.240040485295424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone634",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone634 accessories"
+ }
+ },
+ "system": "drone system 634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48251176517468,
+ 38.751237176083336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone635",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone635 accessories"
+ }
+ },
+ "system": "drone system 635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37785857309036,
+ 38.681515219360676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone636",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone636 accessories"
+ }
+ },
+ "system": "drone system 636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92132397962884,
+ 39.638807967158854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone637",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone637 accessories"
+ }
+ },
+ "system": "drone system 637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96268178220316,
+ 39.440987928371904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone638",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone638 accessories"
+ }
+ },
+ "system": "drone system 638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76183742174075,
+ 39.393662694996806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone639",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone639 accessories"
+ }
+ },
+ "system": "drone system 639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21543707981803,
+ 38.75332954200373
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone640",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone640 accessories"
+ }
+ },
+ "system": "drone system 640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73723891174672,
+ 39.12745306136625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone641",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone641 accessories"
+ }
+ },
+ "system": "drone system 641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43378486476927,
+ 38.61839866330983
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone642",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone642 accessories"
+ }
+ },
+ "system": "drone system 642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3435731321383,
+ 39.7313431040165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone643",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone643 accessories"
+ }
+ },
+ "system": "drone system 643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48165823654914,
+ 39.56761272912219
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone644",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone644 accessories"
+ }
+ },
+ "system": "drone system 644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2972042925429,
+ 39.11213068709544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone645",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone645 accessories"
+ }
+ },
+ "system": "drone system 645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12122325471363,
+ 38.389188710284536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone646",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone646 accessories"
+ }
+ },
+ "system": "drone system 646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4817994980529,
+ 38.902122572608434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone647",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone647 accessories"
+ }
+ },
+ "system": "drone system 647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32365273097406,
+ 39.019282756899074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone648",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone648 accessories"
+ }
+ },
+ "system": "drone system 648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32239030295695,
+ 39.43953831929763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone649",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone649 accessories"
+ }
+ },
+ "system": "drone system 649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59392505507614,
+ 38.911882852074434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone650",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone650 accessories"
+ }
+ },
+ "system": "drone system 650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77114918235502,
+ 38.88721605200811
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone651",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone651 accessories"
+ }
+ },
+ "system": "drone system 651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98257601566478,
+ 38.99826458769087
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone652",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone652 accessories"
+ }
+ },
+ "system": "drone system 652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63247434732533,
+ 39.22497286547593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone653",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone653 accessories"
+ }
+ },
+ "system": "drone system 653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5749934805921,
+ 38.94480235142124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone654",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone654 accessories"
+ }
+ },
+ "system": "drone system 654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41038603499315,
+ 39.34932442320767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone655",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone655 accessories"
+ }
+ },
+ "system": "drone system 655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6958639648838,
+ 38.54914649441974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone656",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone656 accessories"
+ }
+ },
+ "system": "drone system 656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18733503985797,
+ 38.87573411374859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone657",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone657 accessories"
+ }
+ },
+ "system": "drone system 657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74357460463422,
+ 39.4453640883521
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone658",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone658 accessories"
+ }
+ },
+ "system": "drone system 658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25007580007133,
+ 38.72478201369209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone659",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone659 accessories"
+ }
+ },
+ "system": "drone system 659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65523220575722,
+ 39.12876742956952
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone660",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone660 accessories"
+ }
+ },
+ "system": "drone system 660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88000709482937,
+ 38.181563793975144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone661",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone661 accessories"
+ }
+ },
+ "system": "drone system 661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39333401899351,
+ 39.40115737233688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone662",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone662 accessories"
+ }
+ },
+ "system": "drone system 662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25297834784301,
+ 38.67077757114553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone663",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone663 accessories"
+ }
+ },
+ "system": "drone system 663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95395593984942,
+ 39.42044094204087
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone664",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone664 accessories"
+ }
+ },
+ "system": "drone system 664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64494341328981,
+ 38.37513231215786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone665",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone665 accessories"
+ }
+ },
+ "system": "drone system 665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80348379161371,
+ 39.119476203188256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone666",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone666 accessories"
+ }
+ },
+ "system": "drone system 666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44194207426753,
+ 38.6891683258641
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone667",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone667 accessories"
+ }
+ },
+ "system": "drone system 667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3343015939696,
+ 39.02297552452676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone668",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone668 accessories"
+ }
+ },
+ "system": "drone system 668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92931172374666,
+ 38.95360043193113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone669",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone669 accessories"
+ }
+ },
+ "system": "drone system 669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69016732880341,
+ 38.615064071413286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone670",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone670 accessories"
+ }
+ },
+ "system": "drone system 670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72989499940272,
+ 38.13619493935016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone671",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone671 accessories"
+ }
+ },
+ "system": "drone system 671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18149755958818,
+ 38.89660629532848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone672",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone672 accessories"
+ }
+ },
+ "system": "drone system 672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61849153734438,
+ 39.52659191418625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone673",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone673 accessories"
+ }
+ },
+ "system": "drone system 673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2507374734912,
+ 38.84600536957475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone674",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone674 accessories"
+ }
+ },
+ "system": "drone system 674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78754124252288,
+ 38.7641947634081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone675",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone675 accessories"
+ }
+ },
+ "system": "drone system 675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39984460651606,
+ 38.86354954778814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone676",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone676 accessories"
+ }
+ },
+ "system": "drone system 676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01489651321353,
+ 38.649209791195254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone677",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone677 accessories"
+ }
+ },
+ "system": "drone system 677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67983031522338,
+ 38.760215456224245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone678",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone678 accessories"
+ }
+ },
+ "system": "drone system 678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6862596320327,
+ 38.75644219280893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone679",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone679 accessories"
+ }
+ },
+ "system": "drone system 679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69460915431185,
+ 38.74076346086286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone680",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone680 accessories"
+ }
+ },
+ "system": "drone system 680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13953031099632,
+ 38.251894552485595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone681",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone681 accessories"
+ }
+ },
+ "system": "drone system 681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47340306301018,
+ 38.75495874358361
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone682",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone682 accessories"
+ }
+ },
+ "system": "drone system 682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73748560547814,
+ 39.040352557765985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone683",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone683 accessories"
+ }
+ },
+ "system": "drone system 683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3226296948961,
+ 39.21793429999864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone684",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone684 accessories"
+ }
+ },
+ "system": "drone system 684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31047960892198,
+ 38.713125376007966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone685",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone685 accessories"
+ }
+ },
+ "system": "drone system 685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53093881674967,
+ 39.008006519163146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone686",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone686 accessories"
+ }
+ },
+ "system": "drone system 686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89778716343537,
+ 39.01750837208993
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone687",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone687 accessories"
+ }
+ },
+ "system": "drone system 687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61465266364607,
+ 38.93229206553748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone688",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone688 accessories"
+ }
+ },
+ "system": "drone system 688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98417169388343,
+ 38.663502021836074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone689",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone689 accessories"
+ }
+ },
+ "system": "drone system 689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07392208490916,
+ 39.77977212245372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone690",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone690 accessories"
+ }
+ },
+ "system": "drone system 690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15782459148949,
+ 39.174252479653646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone691",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone691 accessories"
+ }
+ },
+ "system": "drone system 691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60599622569823,
+ 39.60541047889902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone692",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone692 accessories"
+ }
+ },
+ "system": "drone system 692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70490526701502,
+ 39.47538169804946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone693",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone693 accessories"
+ }
+ },
+ "system": "drone system 693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47614250545405,
+ 39.091498668816364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone694",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone694 accessories"
+ }
+ },
+ "system": "drone system 694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73139610455985,
+ 38.901117531598466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone695",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone695 accessories"
+ }
+ },
+ "system": "drone system 695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58002432659065,
+ 39.35334685793486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone696",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone696 accessories"
+ }
+ },
+ "system": "drone system 696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62801886335752,
+ 39.06381474849317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone697",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone697 accessories"
+ }
+ },
+ "system": "drone system 697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22076263069839,
+ 39.488557935887286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone698",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone698 accessories"
+ }
+ },
+ "system": "drone system 698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95910419545339,
+ 39.61336159533704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone699",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone699 accessories"
+ }
+ },
+ "system": "drone system 699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83208598040238,
+ 38.43790770632927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone700",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone700 accessories"
+ }
+ },
+ "system": "drone system 700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65901701610892,
+ 39.12389009174335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone701",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone701 accessories"
+ }
+ },
+ "system": "drone system 701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18413124588388,
+ 39.30981357990945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone702",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone702 accessories"
+ }
+ },
+ "system": "drone system 702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24574210862181,
+ 38.38862288388595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone703",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone703 accessories"
+ }
+ },
+ "system": "drone system 703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95480612324472,
+ 38.44770079534704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone704",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone704 accessories"
+ }
+ },
+ "system": "drone system 704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85988126949307,
+ 38.40340179834147
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone705",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone705 accessories"
+ }
+ },
+ "system": "drone system 705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46622818023236,
+ 39.483804862077314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone706",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone706 accessories"
+ }
+ },
+ "system": "drone system 706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01695188876384,
+ 39.453237156287145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone707",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone707 accessories"
+ }
+ },
+ "system": "drone system 707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77541306586498,
+ 38.35807069163869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone708",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone708 accessories"
+ }
+ },
+ "system": "drone system 708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77352063987551,
+ 38.9881596575163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone709",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone709 accessories"
+ }
+ },
+ "system": "drone system 709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01467499881593,
+ 38.92484246083534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone710",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone710 accessories"
+ }
+ },
+ "system": "drone system 710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31803296333419,
+ 38.28889014595487
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone711",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone711 accessories"
+ }
+ },
+ "system": "drone system 711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0923810750531,
+ 38.78849841492082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone712",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone712 accessories"
+ }
+ },
+ "system": "drone system 712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30595916286573,
+ 39.51529474104951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone713",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone713 accessories"
+ }
+ },
+ "system": "drone system 713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6492194447682,
+ 38.5822806429661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone714",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone714 accessories"
+ }
+ },
+ "system": "drone system 714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20628161315938,
+ 38.744357396431354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone715",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone715 accessories"
+ }
+ },
+ "system": "drone system 715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4849152177695,
+ 39.125981607473655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone716",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone716 accessories"
+ }
+ },
+ "system": "drone system 716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88877202623297,
+ 38.48276879990621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone717",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone717 accessories"
+ }
+ },
+ "system": "drone system 717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06611275689,
+ 38.22617308199754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone718",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone718 accessories"
+ }
+ },
+ "system": "drone system 718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38864837009986,
+ 38.336564551337155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone719",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone719 accessories"
+ }
+ },
+ "system": "drone system 719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2452352651082,
+ 38.866122166449806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone720",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone720 accessories"
+ }
+ },
+ "system": "drone system 720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4068815372949,
+ 39.28968674808428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone721",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone721 accessories"
+ }
+ },
+ "system": "drone system 721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77391639359672,
+ 38.73082213478271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone722",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone722 accessories"
+ }
+ },
+ "system": "drone system 722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56127229458329,
+ 38.59996496462558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone723",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone723 accessories"
+ }
+ },
+ "system": "drone system 723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58097880701234,
+ 38.94059412414393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone724",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone724 accessories"
+ }
+ },
+ "system": "drone system 724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57007776943331,
+ 39.588346204370744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone725",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone725 accessories"
+ }
+ },
+ "system": "drone system 725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23387816021835,
+ 38.05927438718301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone726",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone726 accessories"
+ }
+ },
+ "system": "drone system 726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63300068619961,
+ 38.86242815622252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone727",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone727 accessories"
+ }
+ },
+ "system": "drone system 727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33897652563188,
+ 39.31083691415677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone728",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone728 accessories"
+ }
+ },
+ "system": "drone system 728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42103184564513,
+ 39.120653599800804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone729",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone729 accessories"
+ }
+ },
+ "system": "drone system 729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41975906575755,
+ 38.215615470248444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone730",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone730 accessories"
+ }
+ },
+ "system": "drone system 730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07522769500856,
+ 39.09899001768546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone731",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone731 accessories"
+ }
+ },
+ "system": "drone system 731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76504020491853,
+ 39.67234629550154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone732",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone732 accessories"
+ }
+ },
+ "system": "drone system 732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89580072319053,
+ 39.66304450741778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone733",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone733 accessories"
+ }
+ },
+ "system": "drone system 733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98669748554198,
+ 39.495263059203936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone734",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone734 accessories"
+ }
+ },
+ "system": "drone system 734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25777226631085,
+ 38.883462162262695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone735",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone735 accessories"
+ }
+ },
+ "system": "drone system 735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88004180475622,
+ 38.87872839687328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone736",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone736 accessories"
+ }
+ },
+ "system": "drone system 736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61846222308353,
+ 38.65046693388908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone737",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone737 accessories"
+ }
+ },
+ "system": "drone system 737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15383546214237,
+ 38.24863276051043
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone738",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone738 accessories"
+ }
+ },
+ "system": "drone system 738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56770729433967,
+ 38.584219785783134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone739",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone739 accessories"
+ }
+ },
+ "system": "drone system 739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41675509475668,
+ 38.289151056946885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone740",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone740 accessories"
+ }
+ },
+ "system": "drone system 740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62869317953036,
+ 38.66543886578267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone741",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone741 accessories"
+ }
+ },
+ "system": "drone system 741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84027322411332,
+ 38.99859033745233
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone742",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone742 accessories"
+ }
+ },
+ "system": "drone system 742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33704966100889,
+ 38.3058327639854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone743",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone743 accessories"
+ }
+ },
+ "system": "drone system 743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87978341062679,
+ 39.13196858771186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone744",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone744 accessories"
+ }
+ },
+ "system": "drone system 744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20384818701416,
+ 39.03746358112271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone745",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone745 accessories"
+ }
+ },
+ "system": "drone system 745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99907656754944,
+ 38.45125052683061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone746",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone746 accessories"
+ }
+ },
+ "system": "drone system 746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94039168140155,
+ 39.015809050730525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone747",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone747 accessories"
+ }
+ },
+ "system": "drone system 747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14289695029179,
+ 39.57999144583375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone748",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone748 accessories"
+ }
+ },
+ "system": "drone system 748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63226757576636,
+ 38.410773612760785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone749",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone749 accessories"
+ }
+ },
+ "system": "drone system 749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26450461661575,
+ 39.00124539311005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone750",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone750 accessories"
+ }
+ },
+ "system": "drone system 750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98666695468435,
+ 38.742951467403365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone751",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone751 accessories"
+ }
+ },
+ "system": "drone system 751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84539854514668,
+ 39.29709887742907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone752",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone752 accessories"
+ }
+ },
+ "system": "drone system 752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5831197401574,
+ 38.36054623345988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone753",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone753 accessories"
+ }
+ },
+ "system": "drone system 753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3342767494112,
+ 38.73149066779265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone754",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone754 accessories"
+ }
+ },
+ "system": "drone system 754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79947598117549,
+ 38.22021689877781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone755",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone755 accessories"
+ }
+ },
+ "system": "drone system 755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50612560227148,
+ 39.605337050250704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone756",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone756 accessories"
+ }
+ },
+ "system": "drone system 756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.397421388051,
+ 39.49334910977598
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone757",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone757 accessories"
+ }
+ },
+ "system": "drone system 757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81439682284328,
+ 38.14308451335338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone758",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone758 accessories"
+ }
+ },
+ "system": "drone system 758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12587007024592,
+ 39.10757769021377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone759",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone759 accessories"
+ }
+ },
+ "system": "drone system 759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74554933102908,
+ 38.7145968837772
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone760",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone760 accessories"
+ }
+ },
+ "system": "drone system 760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16879327349896,
+ 39.26246572211795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone761",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone761 accessories"
+ }
+ },
+ "system": "drone system 761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50341155535122,
+ 38.9342586946899
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone762",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone762 accessories"
+ }
+ },
+ "system": "drone system 762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42706821884065,
+ 38.5170870329276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone763",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone763 accessories"
+ }
+ },
+ "system": "drone system 763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83992313488925,
+ 39.29094411181984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone764",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone764 accessories"
+ }
+ },
+ "system": "drone system 764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25535324378643,
+ 38.94335928387401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone765",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone765 accessories"
+ }
+ },
+ "system": "drone system 765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60973621812843,
+ 38.31461336839347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone766",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone766 accessories"
+ }
+ },
+ "system": "drone system 766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65395381676835,
+ 38.804952685493184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone767",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone767 accessories"
+ }
+ },
+ "system": "drone system 767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37246791447697,
+ 38.49498045089568
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone768",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone768 accessories"
+ }
+ },
+ "system": "drone system 768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70438969103276,
+ 38.1258669490926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone769",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone769 accessories"
+ }
+ },
+ "system": "drone system 769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68095776267965,
+ 38.79522177488951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone770",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone770 accessories"
+ }
+ },
+ "system": "drone system 770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75211093771468,
+ 39.73546794718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone771",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone771 accessories"
+ }
+ },
+ "system": "drone system 771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36927893826586,
+ 38.22184748433579
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone772",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone772 accessories"
+ }
+ },
+ "system": "drone system 772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76594960047849,
+ 39.36112862391561
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone773 accessories"
+ }
+ },
+ "system": "drone system 773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68330650589223,
+ 39.584763760759856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone774",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone774 accessories"
+ }
+ },
+ "system": "drone system 774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66647808065177,
+ 39.46299929457634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone775",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone775 accessories"
+ }
+ },
+ "system": "drone system 775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79701173878057,
+ 39.438931604916114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone776",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone776 accessories"
+ }
+ },
+ "system": "drone system 776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7319148042571,
+ 39.09858728383086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone777",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone777 accessories"
+ }
+ },
+ "system": "drone system 777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97069340283834,
+ 38.761092007346505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone778",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone778 accessories"
+ }
+ },
+ "system": "drone system 778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25291112708872,
+ 38.64399779142939
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone779",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone779 accessories"
+ }
+ },
+ "system": "drone system 779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88239889258433,
+ 39.377217374814414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone780",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone780 accessories"
+ }
+ },
+ "system": "drone system 780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43167224770123,
+ 39.27929061941298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone781",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone781 accessories"
+ }
+ },
+ "system": "drone system 781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39596934101449,
+ 38.91623118816441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone782",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone782 accessories"
+ }
+ },
+ "system": "drone system 782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05105812351194,
+ 39.68884401581773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone783",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone783 accessories"
+ }
+ },
+ "system": "drone system 783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73446280560167,
+ 39.46358836982523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone784",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone784 accessories"
+ }
+ },
+ "system": "drone system 784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33757670718487,
+ 39.172473179298755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone785",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone785 accessories"
+ }
+ },
+ "system": "drone system 785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69576002908308,
+ 39.310701423763405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone786",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone786 accessories"
+ }
+ },
+ "system": "drone system 786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82984806410124,
+ 38.316982232281724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone787",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone787 accessories"
+ }
+ },
+ "system": "drone system 787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47046819513545,
+ 39.60110435599201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone788",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone788 accessories"
+ }
+ },
+ "system": "drone system 788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60313249258647,
+ 39.620620005901856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone789",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone789 accessories"
+ }
+ },
+ "system": "drone system 789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91298070090818,
+ 38.430968284593305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone790",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone790 accessories"
+ }
+ },
+ "system": "drone system 790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5227566129055,
+ 38.71237230304045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone791",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone791 accessories"
+ }
+ },
+ "system": "drone system 791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57388083276486,
+ 38.33194660574861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone792",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone792 accessories"
+ }
+ },
+ "system": "drone system 792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41307628108251,
+ 38.43828346451028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone793",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone793 accessories"
+ }
+ },
+ "system": "drone system 793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21878163782044,
+ 38.78457915528981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone794",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone794 accessories"
+ }
+ },
+ "system": "drone system 794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1651952832809,
+ 39.04531265316029
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone795",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone795 accessories"
+ }
+ },
+ "system": "drone system 795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52814981070574,
+ 38.38320253712202
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone796",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone796 accessories"
+ }
+ },
+ "system": "drone system 796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95526651237928,
+ 38.31657069354854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone797",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone797 accessories"
+ }
+ },
+ "system": "drone system 797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91803120771293,
+ 38.35913129727125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone798",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone798 accessories"
+ }
+ },
+ "system": "drone system 798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73128068557604,
+ 38.56478957164452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone799",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone799 accessories"
+ }
+ },
+ "system": "drone system 799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54798114428161,
+ 39.09394010504693
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone800",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone800 accessories"
+ }
+ },
+ "system": "drone system 800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05474427430262,
+ 39.45872827805135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone801",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone801 accessories"
+ }
+ },
+ "system": "drone system 801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60074252179383,
+ 39.652637781812366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone802",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone802 accessories"
+ }
+ },
+ "system": "drone system 802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98770224586136,
+ 38.80856866652528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone803",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone803 accessories"
+ }
+ },
+ "system": "drone system 803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79294819734922,
+ 38.75339043322884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone804",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone804 accessories"
+ }
+ },
+ "system": "drone system 804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5318554638036,
+ 38.66181852833509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone805",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone805 accessories"
+ }
+ },
+ "system": "drone system 805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42304481103587,
+ 39.21756656892684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone806",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone806 accessories"
+ }
+ },
+ "system": "drone system 806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45769494395425,
+ 38.99127377440569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone807",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone807 accessories"
+ }
+ },
+ "system": "drone system 807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56797974266301,
+ 39.454734428750356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone808",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone808 accessories"
+ }
+ },
+ "system": "drone system 808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55812709712153,
+ 38.59278976266505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone809",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone809 accessories"
+ }
+ },
+ "system": "drone system 809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23824068305429,
+ 38.25067106201008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone810",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone810 accessories"
+ }
+ },
+ "system": "drone system 810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13748416183702,
+ 39.620045845872035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone811",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone811 accessories"
+ }
+ },
+ "system": "drone system 811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20080536920337,
+ 39.69883889065294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone812",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone812 accessories"
+ }
+ },
+ "system": "drone system 812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09984657824859,
+ 38.72539599641633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone813",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone813 accessories"
+ }
+ },
+ "system": "drone system 813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47312438710597,
+ 38.7187523490016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone814",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone814 accessories"
+ }
+ },
+ "system": "drone system 814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21564359622741,
+ 39.14241128903386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone815",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone815 accessories"
+ }
+ },
+ "system": "drone system 815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70242751536513,
+ 38.52561602537738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone816",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone816 accessories"
+ }
+ },
+ "system": "drone system 816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15841843728691,
+ 38.264744409274854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone817",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone817 accessories"
+ }
+ },
+ "system": "drone system 817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4231388011373,
+ 38.702295548019215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone818",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone818 accessories"
+ }
+ },
+ "system": "drone system 818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0695492835288,
+ 38.95213716586661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone819",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone819 accessories"
+ }
+ },
+ "system": "drone system 819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57500242869321,
+ 38.42575292102312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone820",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone820 accessories"
+ }
+ },
+ "system": "drone system 820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82419183765745,
+ 39.18583941714814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone821",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone821 accessories"
+ }
+ },
+ "system": "drone system 821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83725790660681,
+ 38.94713123276681
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone822",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone822 accessories"
+ }
+ },
+ "system": "drone system 822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3063116334371,
+ 39.17240720507112
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone823",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone823 accessories"
+ }
+ },
+ "system": "drone system 823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43165451554063,
+ 39.40891903968135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone824",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone824 accessories"
+ }
+ },
+ "system": "drone system 824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34039667223313,
+ 38.93411845198764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone825",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone825 accessories"
+ }
+ },
+ "system": "drone system 825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1090040113097,
+ 38.66104947359956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone826",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone826 accessories"
+ }
+ },
+ "system": "drone system 826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11645632499805,
+ 39.11475926568595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone827",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone827 accessories"
+ }
+ },
+ "system": "drone system 827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01598892367062,
+ 39.18571498193597
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone828",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone828 accessories"
+ }
+ },
+ "system": "drone system 828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25954324606208,
+ 38.59389107000201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone829",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone829 accessories"
+ }
+ },
+ "system": "drone system 829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3569043052146,
+ 38.3412637699228
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone830",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone830 accessories"
+ }
+ },
+ "system": "drone system 830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67533664824064,
+ 39.20393171619457
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone831",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone831 accessories"
+ }
+ },
+ "system": "drone system 831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43040991974648,
+ 38.889504836462145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone832",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone832 accessories"
+ }
+ },
+ "system": "drone system 832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64238484058357,
+ 39.32514733275526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone833",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone833 accessories"
+ }
+ },
+ "system": "drone system 833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2393286273985,
+ 38.56945933562062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone834",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone834 accessories"
+ }
+ },
+ "system": "drone system 834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7371114088027,
+ 38.91891088709143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone835",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone835 accessories"
+ }
+ },
+ "system": "drone system 835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47573312435675,
+ 38.93236356076633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone836",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone836 accessories"
+ }
+ },
+ "system": "drone system 836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90509848101574,
+ 38.270382790046604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone837",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone837 accessories"
+ }
+ },
+ "system": "drone system 837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79676387157582,
+ 39.17116490619854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone838",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone838 accessories"
+ }
+ },
+ "system": "drone system 838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36826992380348,
+ 39.58987928491935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone839",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone839 accessories"
+ }
+ },
+ "system": "drone system 839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53270610354606,
+ 38.16702264398063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone840",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone840 accessories"
+ }
+ },
+ "system": "drone system 840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46550114855175,
+ 38.265520033259065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone841",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone841 accessories"
+ }
+ },
+ "system": "drone system 841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9207505785439,
+ 38.35253976291269
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone842",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone842 accessories"
+ }
+ },
+ "system": "drone system 842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26101753562347,
+ 39.42217366891446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone843",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone843 accessories"
+ }
+ },
+ "system": "drone system 843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49532833095058,
+ 39.282060195610796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone844",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone844 accessories"
+ }
+ },
+ "system": "drone system 844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84463216841979,
+ 39.15646877562872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone845",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone845 accessories"
+ }
+ },
+ "system": "drone system 845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84731793617183,
+ 38.52260494582204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone846",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone846 accessories"
+ }
+ },
+ "system": "drone system 846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78032557815875,
+ 38.87454019198505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone847",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone847 accessories"
+ }
+ },
+ "system": "drone system 847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63191399083651,
+ 38.703808161206126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone848",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone848 accessories"
+ }
+ },
+ "system": "drone system 848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03969052952726,
+ 38.78181730706627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone849",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone849 accessories"
+ }
+ },
+ "system": "drone system 849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79973814398876,
+ 38.71920125074334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone850",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone850 accessories"
+ }
+ },
+ "system": "drone system 850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74986801710635,
+ 39.55275898855551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone851",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone851 accessories"
+ }
+ },
+ "system": "drone system 851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32744933957864,
+ 39.733151653734964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone852",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone852 accessories"
+ }
+ },
+ "system": "drone system 852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43555525145277,
+ 38.996194472167794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone853",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone853 accessories"
+ }
+ },
+ "system": "drone system 853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62310391754629,
+ 39.37929110550784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone854",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone854 accessories"
+ }
+ },
+ "system": "drone system 854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67556695342121,
+ 38.79605479686967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone855",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone855 accessories"
+ }
+ },
+ "system": "drone system 855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12525588974374,
+ 38.23447820929489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone856",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone856 accessories"
+ }
+ },
+ "system": "drone system 856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83959026808239,
+ 38.77124235469109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone857",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone857 accessories"
+ }
+ },
+ "system": "drone system 857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5061318995526,
+ 38.35676022188298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone858",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone858 accessories"
+ }
+ },
+ "system": "drone system 858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49656027797805,
+ 39.59405456911452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone859",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone859 accessories"
+ }
+ },
+ "system": "drone system 859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6133296708006,
+ 38.253356775837126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone860",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone860 accessories"
+ }
+ },
+ "system": "drone system 860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84196735003337,
+ 39.017851340270695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone861",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone861 accessories"
+ }
+ },
+ "system": "drone system 861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97191161406865,
+ 39.724368595111066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone862",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone862 accessories"
+ }
+ },
+ "system": "drone system 862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76210330911164,
+ 38.5657893553551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone863",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone863 accessories"
+ }
+ },
+ "system": "drone system 863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56428253389075,
+ 39.28247304764404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone864",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone864 accessories"
+ }
+ },
+ "system": "drone system 864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99919028396916,
+ 38.73880061159577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone865",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone865 accessories"
+ }
+ },
+ "system": "drone system 865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6355796829329,
+ 38.106995873096906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone866",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone866 accessories"
+ }
+ },
+ "system": "drone system 866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79206227853997,
+ 38.147526544536774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone867",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone867 accessories"
+ }
+ },
+ "system": "drone system 867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92971235896056,
+ 39.49095084320846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone868",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone868 accessories"
+ }
+ },
+ "system": "drone system 868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69400152811545,
+ 38.532404992158156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone869",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone869 accessories"
+ }
+ },
+ "system": "drone system 869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80415700507243,
+ 39.66949765943039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone870",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone870 accessories"
+ }
+ },
+ "system": "drone system 870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52528448527043,
+ 38.23894402337992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone871",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone871 accessories"
+ }
+ },
+ "system": "drone system 871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30736699389068,
+ 39.016342400895915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone872",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone872 accessories"
+ }
+ },
+ "system": "drone system 872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30262185268397,
+ 38.73090312275535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone873",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone873 accessories"
+ }
+ },
+ "system": "drone system 873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80125303120566,
+ 39.693431560493416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone874",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone874 accessories"
+ }
+ },
+ "system": "drone system 874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18114112124314,
+ 39.25316918828195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone875",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone875 accessories"
+ }
+ },
+ "system": "drone system 875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67533226878923,
+ 39.517481055238434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone876",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone876 accessories"
+ }
+ },
+ "system": "drone system 876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.379481015756,
+ 39.222652178932286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone877",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone877 accessories"
+ }
+ },
+ "system": "drone system 877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11586533629031,
+ 38.42446378157321
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone878",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone878 accessories"
+ }
+ },
+ "system": "drone system 878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41779756999385,
+ 38.68777477192661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone879",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone879 accessories"
+ }
+ },
+ "system": "drone system 879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44762838675685,
+ 38.31737470129514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone880",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone880 accessories"
+ }
+ },
+ "system": "drone system 880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60295164363784,
+ 38.2277511798555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone881 accessories"
+ }
+ },
+ "system": "drone system 881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26469012997697,
+ 38.227123813215464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone882",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone882 accessories"
+ }
+ },
+ "system": "drone system 882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58557677525155,
+ 39.167581762537345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone883",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone883 accessories"
+ }
+ },
+ "system": "drone system 883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08449860719189,
+ 38.80537107560459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone884",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone884 accessories"
+ }
+ },
+ "system": "drone system 884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03500816942196,
+ 39.1590253798691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone885",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone885 accessories"
+ }
+ },
+ "system": "drone system 885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59393511122128,
+ 39.14194238715289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone886",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone886 accessories"
+ }
+ },
+ "system": "drone system 886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2258607812135,
+ 38.98165951706735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone887",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone887 accessories"
+ }
+ },
+ "system": "drone system 887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13019103503566,
+ 39.326641556874286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone888",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone888 accessories"
+ }
+ },
+ "system": "drone system 888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9974118650851,
+ 38.29141146880724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone889",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone889 accessories"
+ }
+ },
+ "system": "drone system 889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15295590589803,
+ 38.330160843124006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone890",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone890 accessories"
+ }
+ },
+ "system": "drone system 890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00934580777482,
+ 39.26956508679367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone891",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone891 accessories"
+ }
+ },
+ "system": "drone system 891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16958469563363,
+ 39.05436484114012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone892",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone892 accessories"
+ }
+ },
+ "system": "drone system 892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15446239972867,
+ 39.781226822620226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone893",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone893 accessories"
+ }
+ },
+ "system": "drone system 893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19785416060085,
+ 39.15946086858926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone894",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone894 accessories"
+ }
+ },
+ "system": "drone system 894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21182645605958,
+ 38.65826248309822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone895",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone895 accessories"
+ }
+ },
+ "system": "drone system 895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33612415147098,
+ 39.4678591841685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone896",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone896 accessories"
+ }
+ },
+ "system": "drone system 896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93117572374437,
+ 39.08655744693365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone897",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone897 accessories"
+ }
+ },
+ "system": "drone system 897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54530025076697,
+ 38.57544709624748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone898",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone898 accessories"
+ }
+ },
+ "system": "drone system 898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53352707578446,
+ 38.99646904041495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone899",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone899 accessories"
+ }
+ },
+ "system": "drone system 899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49948271476799,
+ 39.649237487768076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone900",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone900 accessories"
+ }
+ },
+ "system": "drone system 900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35951594777428,
+ 39.36945724883331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone901",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone901 accessories"
+ }
+ },
+ "system": "drone system 901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49495960888852,
+ 38.383618967185065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone902",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone902 accessories"
+ }
+ },
+ "system": "drone system 902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56002545158076,
+ 39.41710975018734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone903",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone903 accessories"
+ }
+ },
+ "system": "drone system 903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64302954691846,
+ 39.42213340309065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone904",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone904 accessories"
+ }
+ },
+ "system": "drone system 904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11909316669741,
+ 39.040788926015395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone905",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone905 accessories"
+ }
+ },
+ "system": "drone system 905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97035146515374,
+ 39.38826209420325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone906",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone906 accessories"
+ }
+ },
+ "system": "drone system 906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20361209086444,
+ 38.28948159414406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone907",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone907 accessories"
+ }
+ },
+ "system": "drone system 907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37124177398788,
+ 38.72716682537057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone908",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone908 accessories"
+ }
+ },
+ "system": "drone system 908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94488240663009,
+ 39.610041434145934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone909",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone909 accessories"
+ }
+ },
+ "system": "drone system 909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83224251650338,
+ 38.94063410029858
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone910",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone910 accessories"
+ }
+ },
+ "system": "drone system 910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98180389597464,
+ 38.04190237642645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone911",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone911 accessories"
+ }
+ },
+ "system": "drone system 911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51777139267018,
+ 39.28181263787109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone912",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone912 accessories"
+ }
+ },
+ "system": "drone system 912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42960229426072,
+ 38.34376146434729
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone913",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone913 accessories"
+ }
+ },
+ "system": "drone system 913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35864190102338,
+ 38.49776537351453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone914",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone914 accessories"
+ }
+ },
+ "system": "drone system 914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87159847999743,
+ 38.92989450494569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone915",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone915 accessories"
+ }
+ },
+ "system": "drone system 915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90722545361356,
+ 38.30957347288125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone916",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone916 accessories"
+ }
+ },
+ "system": "drone system 916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57885267401221,
+ 39.096479719356736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone917",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone917 accessories"
+ }
+ },
+ "system": "drone system 917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93515840192454,
+ 38.67493126372328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone918",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone918 accessories"
+ }
+ },
+ "system": "drone system 918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98033088999247,
+ 39.591227065025265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone919",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone919 accessories"
+ }
+ },
+ "system": "drone system 919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06966643200268,
+ 38.143523899254376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone920",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone920 accessories"
+ }
+ },
+ "system": "drone system 920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15666679401029,
+ 39.59647166789118
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone921",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone921 accessories"
+ }
+ },
+ "system": "drone system 921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95341282636082,
+ 38.835021233700644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone922",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone922 accessories"
+ }
+ },
+ "system": "drone system 922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66643512888369,
+ 39.32107482844605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone923",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone923 accessories"
+ }
+ },
+ "system": "drone system 923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23301630623232,
+ 39.432697441671905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone924",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone924 accessories"
+ }
+ },
+ "system": "drone system 924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27701564467053,
+ 39.22840249776995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone925",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone925 accessories"
+ }
+ },
+ "system": "drone system 925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91674411629681,
+ 39.64912848529455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone926",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone926 accessories"
+ }
+ },
+ "system": "drone system 926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30261673072026,
+ 39.243282174624134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone927",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone927 accessories"
+ }
+ },
+ "system": "drone system 927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57758939866787,
+ 38.64256931179525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone928",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone928 accessories"
+ }
+ },
+ "system": "drone system 928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45620442601317,
+ 39.562393472567265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone929",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone929 accessories"
+ }
+ },
+ "system": "drone system 929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66136853283678,
+ 39.23419648699994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone930",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone930 accessories"
+ }
+ },
+ "system": "drone system 930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1907783535331,
+ 38.85921480624272
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone931",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone931 accessories"
+ }
+ },
+ "system": "drone system 931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70383290182987,
+ 38.210554789791196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone932",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone932 accessories"
+ }
+ },
+ "system": "drone system 932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15722436585939,
+ 38.85944783140355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone933",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone933 accessories"
+ }
+ },
+ "system": "drone system 933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19977256313159,
+ 39.16798832087301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone934",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone934 accessories"
+ }
+ },
+ "system": "drone system 934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87767661310934,
+ 38.96106479701417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone935",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone935 accessories"
+ }
+ },
+ "system": "drone system 935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64855299571536,
+ 39.41532664567204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone936",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone936 accessories"
+ }
+ },
+ "system": "drone system 936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86612677525105,
+ 39.126132726335754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone937",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone937 accessories"
+ }
+ },
+ "system": "drone system 937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1893007119416,
+ 38.971206870499685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone938",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone938 accessories"
+ }
+ },
+ "system": "drone system 938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7034906646074,
+ 38.306803520025525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone939",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone939 accessories"
+ }
+ },
+ "system": "drone system 939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16302303193459,
+ 38.88840519007715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone940",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone940 accessories"
+ }
+ },
+ "system": "drone system 940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76511140744019,
+ 39.451922314431286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone941",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone941 accessories"
+ }
+ },
+ "system": "drone system 941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5381943668743,
+ 38.87053464610915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone942",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone942 accessories"
+ }
+ },
+ "system": "drone system 942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60823667623394,
+ 38.389119245461906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone943",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone943 accessories"
+ }
+ },
+ "system": "drone system 943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41082608180156,
+ 38.628535855985106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone944",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone944 accessories"
+ }
+ },
+ "system": "drone system 944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21309388230289,
+ 38.892352142395254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone945",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone945 accessories"
+ }
+ },
+ "system": "drone system 945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49372299796944,
+ 38.73131402776279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone946",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone946 accessories"
+ }
+ },
+ "system": "drone system 946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74497872832622,
+ 39.269013060489705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone947",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone947 accessories"
+ }
+ },
+ "system": "drone system 947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80860837811503,
+ 38.91477775311355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone948",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone948 accessories"
+ }
+ },
+ "system": "drone system 948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57214364445396,
+ 39.61303821624896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone949",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone949 accessories"
+ }
+ },
+ "system": "drone system 949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77608307312487,
+ 38.49348022695652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone950",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone950 accessories"
+ }
+ },
+ "system": "drone system 950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2572731539777,
+ 39.06882636446226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone951",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone951 accessories"
+ }
+ },
+ "system": "drone system 951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03244091846297,
+ 39.43637366779169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone952",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone952 accessories"
+ }
+ },
+ "system": "drone system 952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93228778540215,
+ 39.24230594668495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone953",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone953 accessories"
+ }
+ },
+ "system": "drone system 953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98661901156103,
+ 38.03622841891968
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone954",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone954 accessories"
+ }
+ },
+ "system": "drone system 954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4685097906824,
+ 38.70872574022832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone955",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone955 accessories"
+ }
+ },
+ "system": "drone system 955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70339674896492,
+ 38.4003675608656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone956",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone956 accessories"
+ }
+ },
+ "system": "drone system 956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59838303685063,
+ 39.03372868879742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone957",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone957 accessories"
+ }
+ },
+ "system": "drone system 957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91073504892924,
+ 39.044662361887276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone958",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone958 accessories"
+ }
+ },
+ "system": "drone system 958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60286330910606,
+ 38.59350731753503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone959",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone959 accessories"
+ }
+ },
+ "system": "drone system 959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76806484555742,
+ 39.19575826530757
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone960",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone960 accessories"
+ }
+ },
+ "system": "drone system 960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31436525666676,
+ 38.37275703717893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone961",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone961 accessories"
+ }
+ },
+ "system": "drone system 961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23798847677149,
+ 38.40089332883035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone962",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone962 accessories"
+ }
+ },
+ "system": "drone system 962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27419132205762,
+ 39.7612601104187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone963",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone963 accessories"
+ }
+ },
+ "system": "drone system 963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58597804441374,
+ 38.88814369716699
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone964",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone964 accessories"
+ }
+ },
+ "system": "drone system 964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7875086768379,
+ 39.51412343390824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone965",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone965 accessories"
+ }
+ },
+ "system": "drone system 965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65905952432347,
+ 38.23668459642932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone966",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone966 accessories"
+ }
+ },
+ "system": "drone system 966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58964409573338,
+ 38.443956531243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone967",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone967 accessories"
+ }
+ },
+ "system": "drone system 967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54868468698697,
+ 38.500692071235434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone968",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone968 accessories"
+ }
+ },
+ "system": "drone system 968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46703939248556,
+ 38.73683876512666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone969",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone969 accessories"
+ }
+ },
+ "system": "drone system 969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03585572719143,
+ 39.32644746393711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone970",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone970 accessories"
+ }
+ },
+ "system": "drone system 970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48296596630739,
+ 38.56273300793955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone971",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone971 accessories"
+ }
+ },
+ "system": "drone system 971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8916049034887,
+ 38.124766476686794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone972",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone972 accessories"
+ }
+ },
+ "system": "drone system 972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85352825868179,
+ 38.28178385849607
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone973",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone973 accessories"
+ }
+ },
+ "system": "drone system 973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77429738982143,
+ 38.75185285527068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone974",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone974 accessories"
+ }
+ },
+ "system": "drone system 974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34164971978595,
+ 39.06300839555855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone975",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone975 accessories"
+ }
+ },
+ "system": "drone system 975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8173771328924,
+ 38.95189985095254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone976",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone976 accessories"
+ }
+ },
+ "system": "drone system 976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85946595046438,
+ 38.584269518042106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone977",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone977 accessories"
+ }
+ },
+ "system": "drone system 977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.941573750626,
+ 38.575984611978676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone978",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone978 accessories"
+ }
+ },
+ "system": "drone system 978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24381046072979,
+ 38.56578794911971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone979",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone979 accessories"
+ }
+ },
+ "system": "drone system 979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08596908048116,
+ 39.2640297985092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone980",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone980 accessories"
+ }
+ },
+ "system": "drone system 980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49239274402407,
+ 38.25168443580107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone981",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone981 accessories"
+ }
+ },
+ "system": "drone system 981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12345632400344,
+ 38.34623107216928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone982",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone982 accessories"
+ }
+ },
+ "system": "drone system 982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4061727877684,
+ 38.389582493388204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone983",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone983 accessories"
+ }
+ },
+ "system": "drone system 983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02521660855709,
+ 39.06503710665214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone984",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone984 accessories"
+ }
+ },
+ "system": "drone system 984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80401652886064,
+ 39.39417128458242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone985",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone985 accessories"
+ }
+ },
+ "system": "drone system 985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18168859154866,
+ 39.439968941564715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone986",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone986 accessories"
+ }
+ },
+ "system": "drone system 986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86528131906603,
+ 39.031010829994464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone987",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone987 accessories"
+ }
+ },
+ "system": "drone system 987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36777923476413,
+ 38.33113630977756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone988",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone988 accessories"
+ }
+ },
+ "system": "drone system 988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71184616515717,
+ 38.65836875309077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone989",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone989 accessories"
+ }
+ },
+ "system": "drone system 989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96594630784416,
+ 38.658241682250264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone990",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone990 accessories"
+ }
+ },
+ "system": "drone system 990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30587317785977,
+ 38.30171767356402
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone991",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone991 accessories"
+ }
+ },
+ "system": "drone system 991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88301790132265,
+ 38.87226127723238
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone992",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone992 accessories"
+ }
+ },
+ "system": "drone system 992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59265426218965,
+ 38.82703708580692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone993",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone993 accessories"
+ }
+ },
+ "system": "drone system 993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94289551294298,
+ 39.38625800508316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone994",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone994 accessories"
+ }
+ },
+ "system": "drone system 994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89091406220689,
+ 38.639394116218384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone995",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone995 accessories"
+ }
+ },
+ "system": "drone system 995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92888277807322,
+ 39.238306062397655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone996",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone996 accessories"
+ }
+ },
+ "system": "drone system 996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43149471405327,
+ 39.12496308902526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone997",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone997 accessories"
+ }
+ },
+ "system": "drone system 997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2775054680444,
+ 38.930819722908865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone998",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone998 accessories"
+ }
+ },
+ "system": "drone system 998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12367498312807,
+ 39.64026936222086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone999",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone999 accessories"
+ }
+ },
+ "system": "drone system 999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4632040254829,
+ 38.99000342453126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1000",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1000 accessories"
+ }
+ },
+ "system": "drone system 1000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23989658453927,
+ 38.78338869333271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1001",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1001 accessories"
+ }
+ },
+ "system": "drone system 1001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49111289169755,
+ 39.49881825653101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1002",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1002 accessories"
+ }
+ },
+ "system": "drone system 1002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50203531886119,
+ 38.48952827715544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1003",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1003 accessories"
+ }
+ },
+ "system": "drone system 1003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75887436579941,
+ 39.12051836353169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1004",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1004 accessories"
+ }
+ },
+ "system": "drone system 1004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22726965086852,
+ 38.57702910316072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1005",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1005 accessories"
+ }
+ },
+ "system": "drone system 1005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19010322403798,
+ 39.39210102264913
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1006",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1006 accessories"
+ }
+ },
+ "system": "drone system 1006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45085814183588,
+ 39.26078560593943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1007",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1007 accessories"
+ }
+ },
+ "system": "drone system 1007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59670303004127,
+ 39.21983276807844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1008",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1008 accessories"
+ }
+ },
+ "system": "drone system 1008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.487948374507,
+ 39.55042667967462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1009",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1009 accessories"
+ }
+ },
+ "system": "drone system 1009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8986782409632,
+ 38.2386271965189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1010",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1010 accessories"
+ }
+ },
+ "system": "drone system 1010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46284683546845,
+ 38.64160937551767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1011",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1011 accessories"
+ }
+ },
+ "system": "drone system 1011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0668521814728,
+ 38.97190052919859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1012",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1012 accessories"
+ }
+ },
+ "system": "drone system 1012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4043947832325,
+ 39.36038895325149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1013",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1013 accessories"
+ }
+ },
+ "system": "drone system 1013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50120366179867,
+ 38.86752901529107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1014",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1014 accessories"
+ }
+ },
+ "system": "drone system 1014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54285824922711,
+ 39.5437152755008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1015",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1015 accessories"
+ }
+ },
+ "system": "drone system 1015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98145279560583,
+ 38.56344913586309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1016",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1016 accessories"
+ }
+ },
+ "system": "drone system 1016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84926131905627,
+ 39.17230339568042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1017",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1017 accessories"
+ }
+ },
+ "system": "drone system 1017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60615187943827,
+ 39.45806119288355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1018",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1018 accessories"
+ }
+ },
+ "system": "drone system 1018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25957346760576,
+ 38.79212901054832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1019",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1019 accessories"
+ }
+ },
+ "system": "drone system 1019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69506961814987,
+ 38.983948003836105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1020",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1020 accessories"
+ }
+ },
+ "system": "drone system 1020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87458704970089,
+ 39.42663067793761
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1021",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1021 accessories"
+ }
+ },
+ "system": "drone system 1021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35040918136795,
+ 39.17287854940367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1022",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1022 accessories"
+ }
+ },
+ "system": "drone system 1022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63108646589464,
+ 39.52399304986724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1023",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1023 accessories"
+ }
+ },
+ "system": "drone system 1023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6138501152553,
+ 38.555855559288844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1024",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1024 accessories"
+ }
+ },
+ "system": "drone system 1024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82614105708372,
+ 38.102607712270874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1025",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1025 accessories"
+ }
+ },
+ "system": "drone system 1025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26538693043555,
+ 39.25545727108856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1026",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1026 accessories"
+ }
+ },
+ "system": "drone system 1026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58773582834186,
+ 38.78141493841678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1027",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1027 accessories"
+ }
+ },
+ "system": "drone system 1027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48058770314455,
+ 38.949455564253405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1028",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1028 accessories"
+ }
+ },
+ "system": "drone system 1028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99096304278255,
+ 38.041593824717225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1029",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1029 accessories"
+ }
+ },
+ "system": "drone system 1029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25660147071036,
+ 38.134639278743755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1030",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1030 accessories"
+ }
+ },
+ "system": "drone system 1030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38672643796993,
+ 39.48621302314802
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1031",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1031 accessories"
+ }
+ },
+ "system": "drone system 1031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8596907039415,
+ 38.24945731896866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1032",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1032 accessories"
+ }
+ },
+ "system": "drone system 1032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40105477972182,
+ 39.21468099198817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1033",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1033 accessories"
+ }
+ },
+ "system": "drone system 1033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57894606999291,
+ 38.79335696400401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1034",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1034 accessories"
+ }
+ },
+ "system": "drone system 1034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21725469160899,
+ 38.0454219355507
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1035",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1035 accessories"
+ }
+ },
+ "system": "drone system 1035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1813027784625,
+ 39.492063855417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1036",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1036 accessories"
+ }
+ },
+ "system": "drone system 1036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53868643374761,
+ 38.51406290347841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1037",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1037 accessories"
+ }
+ },
+ "system": "drone system 1037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21367635317564,
+ 39.33421655187404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1038",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1038 accessories"
+ }
+ },
+ "system": "drone system 1038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78393975938921,
+ 38.97211331262664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1039",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1039 accessories"
+ }
+ },
+ "system": "drone system 1039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20809950132403,
+ 38.856791250569614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1040",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1040 accessories"
+ }
+ },
+ "system": "drone system 1040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99990874618393,
+ 38.89262673494526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1041",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1041 accessories"
+ }
+ },
+ "system": "drone system 1041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49214221191262,
+ 38.71283263576269
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1042",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1042 accessories"
+ }
+ },
+ "system": "drone system 1042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14867449025517,
+ 38.28036474434637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1043",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1043 accessories"
+ }
+ },
+ "system": "drone system 1043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02198877156465,
+ 39.64555672737402
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1044",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1044 accessories"
+ }
+ },
+ "system": "drone system 1044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29179320805825,
+ 39.156720581336295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1045",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1045 accessories"
+ }
+ },
+ "system": "drone system 1045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74026585233156,
+ 39.27099397183768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1046",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1046 accessories"
+ }
+ },
+ "system": "drone system 1046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87862250246945,
+ 38.83608711394243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1047",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1047 accessories"
+ }
+ },
+ "system": "drone system 1047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90908827757015,
+ 38.459841193142246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1048",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1048 accessories"
+ }
+ },
+ "system": "drone system 1048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38719578963943,
+ 39.066578875500994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1049",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1049 accessories"
+ }
+ },
+ "system": "drone system 1049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44039140579163,
+ 39.43698459019012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1050",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1050 accessories"
+ }
+ },
+ "system": "drone system 1050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83214714768867,
+ 39.73842470764649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1051",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1051 accessories"
+ }
+ },
+ "system": "drone system 1051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70472633626996,
+ 38.626520456167
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1052",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1052 accessories"
+ }
+ },
+ "system": "drone system 1052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88943674736308,
+ 38.158243938022835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1053",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1053 accessories"
+ }
+ },
+ "system": "drone system 1053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2702266309953,
+ 38.34359560955457
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1054",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1054 accessories"
+ }
+ },
+ "system": "drone system 1054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40715011827432,
+ 39.16975457540669
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1055",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1055 accessories"
+ }
+ },
+ "system": "drone system 1055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42109625691813,
+ 38.68689475954847
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1056",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1056 accessories"
+ }
+ },
+ "system": "drone system 1056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8331840839967,
+ 39.20831456760294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1057",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1057 accessories"
+ }
+ },
+ "system": "drone system 1057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58689652169757,
+ 38.886060289811525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1058",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1058 accessories"
+ }
+ },
+ "system": "drone system 1058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94329012744565,
+ 39.17673033197754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1059",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1059 accessories"
+ }
+ },
+ "system": "drone system 1059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30266837590177,
+ 38.89077042843603
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1060",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1060 accessories"
+ }
+ },
+ "system": "drone system 1060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89832595662249,
+ 38.67518293284725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1061",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1061 accessories"
+ }
+ },
+ "system": "drone system 1061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27487786409388,
+ 38.26060498076718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1062",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1062 accessories"
+ }
+ },
+ "system": "drone system 1062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38483453867948,
+ 39.06938236764172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1063",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1063 accessories"
+ }
+ },
+ "system": "drone system 1063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88493199535496,
+ 39.03329219869613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1064",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1064 accessories"
+ }
+ },
+ "system": "drone system 1064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22134950049612,
+ 39.72246838648028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1065",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1065 accessories"
+ }
+ },
+ "system": "drone system 1065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10580756468251,
+ 39.63998138528182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1066",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1066 accessories"
+ }
+ },
+ "system": "drone system 1066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90771750529703,
+ 39.12977709970748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1067",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1067 accessories"
+ }
+ },
+ "system": "drone system 1067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84399571772404,
+ 38.100620600341486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1068",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1068 accessories"
+ }
+ },
+ "system": "drone system 1068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37325105642502,
+ 39.41904481980256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1069",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1069 accessories"
+ }
+ },
+ "system": "drone system 1069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8512327416341,
+ 39.26233699559822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1070",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1070 accessories"
+ }
+ },
+ "system": "drone system 1070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24456674979055,
+ 38.69035110267805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1071",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1071 accessories"
+ }
+ },
+ "system": "drone system 1071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29568392629562,
+ 39.70239879422257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1072",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1072 accessories"
+ }
+ },
+ "system": "drone system 1072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12081494636134,
+ 39.55365581029956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1073",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1073 accessories"
+ }
+ },
+ "system": "drone system 1073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89505563524258,
+ 38.242134131224425
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1074",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1074 accessories"
+ }
+ },
+ "system": "drone system 1074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59329344996193,
+ 39.09048462826291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1075",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1075 accessories"
+ }
+ },
+ "system": "drone system 1075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8293105477621,
+ 39.13998383220428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1076",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1076 accessories"
+ }
+ },
+ "system": "drone system 1076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00560049239304,
+ 38.7145222791768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1077",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1077 accessories"
+ }
+ },
+ "system": "drone system 1077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48087793388892,
+ 38.94880383874664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1078",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1078 accessories"
+ }
+ },
+ "system": "drone system 1078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4585163481897,
+ 38.35120718210839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1079",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1079 accessories"
+ }
+ },
+ "system": "drone system 1079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53573687097871,
+ 39.29455892239675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1080",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1080 accessories"
+ }
+ },
+ "system": "drone system 1080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7692736141465,
+ 39.2456899079398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1081",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1081 accessories"
+ }
+ },
+ "system": "drone system 1081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86636544366442,
+ 39.59957167195737
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1082",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1082 accessories"
+ }
+ },
+ "system": "drone system 1082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59618982706593,
+ 38.808624775435604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1083",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1083 accessories"
+ }
+ },
+ "system": "drone system 1083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19238194602639,
+ 38.7253188250911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1084",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1084 accessories"
+ }
+ },
+ "system": "drone system 1084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62190546985269,
+ 39.531715351611986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1085",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1085 accessories"
+ }
+ },
+ "system": "drone system 1085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90496172920642,
+ 39.07352520769035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1086",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1086 accessories"
+ }
+ },
+ "system": "drone system 1086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57525949760061,
+ 39.355153235917406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1087",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1087 accessories"
+ }
+ },
+ "system": "drone system 1087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67923267902765,
+ 38.595348610974625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1088",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1088 accessories"
+ }
+ },
+ "system": "drone system 1088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63794704794103,
+ 38.283848328062525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1089",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1089 accessories"
+ }
+ },
+ "system": "drone system 1089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18244912510575,
+ 39.73933751593858
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1090",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1090 accessories"
+ }
+ },
+ "system": "drone system 1090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6523539520312,
+ 38.760646791276905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1091",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1091 accessories"
+ }
+ },
+ "system": "drone system 1091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81376466024481,
+ 39.15007293032954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1092",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1092 accessories"
+ }
+ },
+ "system": "drone system 1092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94268319352368,
+ 38.036107407951384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1093",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1093 accessories"
+ }
+ },
+ "system": "drone system 1093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27514804445856,
+ 38.17273345647725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1094",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1094 accessories"
+ }
+ },
+ "system": "drone system 1094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73484431937639,
+ 39.15314615869444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1095",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1095 accessories"
+ }
+ },
+ "system": "drone system 1095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63152734840641,
+ 39.208929047635806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1096",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1096 accessories"
+ }
+ },
+ "system": "drone system 1096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03899516855677,
+ 38.80939722621599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1097",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1097 accessories"
+ }
+ },
+ "system": "drone system 1097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25229755768208,
+ 39.57742626748618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1098",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1098 accessories"
+ }
+ },
+ "system": "drone system 1098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62533526855408,
+ 38.39697315111819
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1099",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1099 accessories"
+ }
+ },
+ "system": "drone system 1099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98733017162849,
+ 38.74328875573288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1100",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1100 accessories"
+ }
+ },
+ "system": "drone system 1100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78321349232512,
+ 38.17625315511787
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1101",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1101 accessories"
+ }
+ },
+ "system": "drone system 1101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95820091464527,
+ 38.886929351935365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1102",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1102 accessories"
+ }
+ },
+ "system": "drone system 1102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40248706536346,
+ 38.841242829783226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1103",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1103 accessories"
+ }
+ },
+ "system": "drone system 1103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44126297256045,
+ 38.31328008611603
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1104",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1104 accessories"
+ }
+ },
+ "system": "drone system 1104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66314467980844,
+ 39.39599357028808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1105",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1105 accessories"
+ }
+ },
+ "system": "drone system 1105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8632274243677,
+ 39.18887164445312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1106",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1106 accessories"
+ }
+ },
+ "system": "drone system 1106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44578579106815,
+ 38.389994802578464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1107",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1107 accessories"
+ }
+ },
+ "system": "drone system 1107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77283435748478,
+ 39.0319997334169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1108",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1108 accessories"
+ }
+ },
+ "system": "drone system 1108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9875378315447,
+ 39.07174409494278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1109",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1109 accessories"
+ }
+ },
+ "system": "drone system 1109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4078905756269,
+ 38.95543752164953
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1110",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1110 accessories"
+ }
+ },
+ "system": "drone system 1110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52186291891688,
+ 38.866497299218025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1111",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1111 accessories"
+ }
+ },
+ "system": "drone system 1111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68670131104689,
+ 38.39840195247764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1112",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1112 accessories"
+ }
+ },
+ "system": "drone system 1112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81634198573119,
+ 38.47325445996175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1113",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1113 accessories"
+ }
+ },
+ "system": "drone system 1113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67058105985694,
+ 38.60981437628323
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1114",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1114 accessories"
+ }
+ },
+ "system": "drone system 1114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0244781828621,
+ 39.49328474518571
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1115",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1115 accessories"
+ }
+ },
+ "system": "drone system 1115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27437456108083,
+ 39.01250708863237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1116",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1116 accessories"
+ }
+ },
+ "system": "drone system 1116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00825217000559,
+ 39.275109643636604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1117",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1117 accessories"
+ }
+ },
+ "system": "drone system 1117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59404636197645,
+ 38.47232220179781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1118",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1118 accessories"
+ }
+ },
+ "system": "drone system 1118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6228801799919,
+ 38.705653862719316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1119",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1119 accessories"
+ }
+ },
+ "system": "drone system 1119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87829665844214,
+ 38.516391279281876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1120",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1120 accessories"
+ }
+ },
+ "system": "drone system 1120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58077816729474,
+ 38.62937664222093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1121",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1121 accessories"
+ }
+ },
+ "system": "drone system 1121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19174766074532,
+ 38.43203686524785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1122",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1122 accessories"
+ }
+ },
+ "system": "drone system 1122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28335208562193,
+ 39.044522224465084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1123",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1123 accessories"
+ }
+ },
+ "system": "drone system 1123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60349477588831,
+ 39.10102453874473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1124",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1124 accessories"
+ }
+ },
+ "system": "drone system 1124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32000063860308,
+ 38.85914678153314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1125",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1125 accessories"
+ }
+ },
+ "system": "drone system 1125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8676628476534,
+ 38.932887650918325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1126",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1126 accessories"
+ }
+ },
+ "system": "drone system 1126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.501499719274,
+ 39.43343320257552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1127",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1127 accessories"
+ }
+ },
+ "system": "drone system 1127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79262852027388,
+ 38.64096474735161
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1128",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1128 accessories"
+ }
+ },
+ "system": "drone system 1128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13032254460977,
+ 38.269062107100986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1129",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1129 accessories"
+ }
+ },
+ "system": "drone system 1129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44008770842416,
+ 38.514947462845385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1130",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1130 accessories"
+ }
+ },
+ "system": "drone system 1130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50686821203932,
+ 39.000126208665776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1131",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1131 accessories"
+ }
+ },
+ "system": "drone system 1131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79268744721124,
+ 38.36332382437297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1132",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1132 accessories"
+ }
+ },
+ "system": "drone system 1132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80407075870491,
+ 39.06283657795407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1133",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1133 accessories"
+ }
+ },
+ "system": "drone system 1133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27769512813063,
+ 39.11669754033453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1134",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1134 accessories"
+ }
+ },
+ "system": "drone system 1134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.204843445514,
+ 38.98002184124482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1135",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1135 accessories"
+ }
+ },
+ "system": "drone system 1135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1160659969674,
+ 39.14026757542026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1136",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1136 accessories"
+ }
+ },
+ "system": "drone system 1136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57028741718337,
+ 38.48669523310366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1137",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1137 accessories"
+ }
+ },
+ "system": "drone system 1137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50892718191358,
+ 38.80751420115646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1138",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1138 accessories"
+ }
+ },
+ "system": "drone system 1138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1812662664291,
+ 38.75663453721326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1139",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1139 accessories"
+ }
+ },
+ "system": "drone system 1139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64391418995811,
+ 38.970322119093844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1140",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1140 accessories"
+ }
+ },
+ "system": "drone system 1140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53298693164548,
+ 38.75820804367044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1141",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1141 accessories"
+ }
+ },
+ "system": "drone system 1141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23868905786081,
+ 39.56686407800255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1142",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1142 accessories"
+ }
+ },
+ "system": "drone system 1142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5687200502688,
+ 38.875689515751915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1143",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1143 accessories"
+ }
+ },
+ "system": "drone system 1143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67101913134967,
+ 39.71981504985606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1144",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1144 accessories"
+ }
+ },
+ "system": "drone system 1144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56925082958814,
+ 38.76837909451814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1145",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1145 accessories"
+ }
+ },
+ "system": "drone system 1145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36339062044692,
+ 38.3336060906547
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1146",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1146 accessories"
+ }
+ },
+ "system": "drone system 1146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22752450509272,
+ 39.30546192784824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1147",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1147 accessories"
+ }
+ },
+ "system": "drone system 1147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82206734495387,
+ 39.134530038808016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1148",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1148 accessories"
+ }
+ },
+ "system": "drone system 1148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33113571709731,
+ 38.99516228383407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1149",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1149 accessories"
+ }
+ },
+ "system": "drone system 1149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69662973464142,
+ 39.25876122286723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1150",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1150 accessories"
+ }
+ },
+ "system": "drone system 1150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00491441435747,
+ 38.48327239879793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1151",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1151 accessories"
+ }
+ },
+ "system": "drone system 1151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00950270998702,
+ 39.45896646331892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1152",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1152 accessories"
+ }
+ },
+ "system": "drone system 1152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63283103178213,
+ 38.7137628150739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1153",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1153 accessories"
+ }
+ },
+ "system": "drone system 1153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11935490926953,
+ 38.466643237857916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1154",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1154 accessories"
+ }
+ },
+ "system": "drone system 1154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67344261055419,
+ 39.375945659900104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1155",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1155 accessories"
+ }
+ },
+ "system": "drone system 1155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75255543596879,
+ 38.89407580178292
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1156",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1156 accessories"
+ }
+ },
+ "system": "drone system 1156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28833194392634,
+ 39.73993975753562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1157",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1157 accessories"
+ }
+ },
+ "system": "drone system 1157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73961992449387,
+ 38.44707137480292
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1158",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1158 accessories"
+ }
+ },
+ "system": "drone system 1158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31762136453409,
+ 39.16520843443899
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1159",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1159 accessories"
+ }
+ },
+ "system": "drone system 1159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11787968609315,
+ 38.41048377077889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1160",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1160 accessories"
+ }
+ },
+ "system": "drone system 1160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09547848980993,
+ 39.06800648929503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1161",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1161 accessories"
+ }
+ },
+ "system": "drone system 1161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51290463138753,
+ 39.49550035456031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1162",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1162 accessories"
+ }
+ },
+ "system": "drone system 1162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30939533118581,
+ 38.38876599622696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1163",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1163 accessories"
+ }
+ },
+ "system": "drone system 1163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37995133201598,
+ 38.76270362152395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1164",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1164 accessories"
+ }
+ },
+ "system": "drone system 1164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40585456884423,
+ 39.49390018411723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1165",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1165 accessories"
+ }
+ },
+ "system": "drone system 1165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.14657893729215,
+ 38.96732657733097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1166",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1166 accessories"
+ }
+ },
+ "system": "drone system 1166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47726855071512,
+ 39.01828089224471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1167",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1167 accessories"
+ }
+ },
+ "system": "drone system 1167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37139767306401,
+ 38.634325333053994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1168",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1168 accessories"
+ }
+ },
+ "system": "drone system 1168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7135111403469,
+ 38.78043574160846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1169",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1169 accessories"
+ }
+ },
+ "system": "drone system 1169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98602971354832,
+ 39.45475794611244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1170",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1170 accessories"
+ }
+ },
+ "system": "drone system 1170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31414715783943,
+ 39.1320903086144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1171",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1171 accessories"
+ }
+ },
+ "system": "drone system 1171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86596822008063,
+ 38.15353514115248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1172",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1172 accessories"
+ }
+ },
+ "system": "drone system 1172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6715864849862,
+ 38.78181412195497
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1173",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1173 accessories"
+ }
+ },
+ "system": "drone system 1173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38206912881162,
+ 38.83227073356546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1174",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1174 accessories"
+ }
+ },
+ "system": "drone system 1174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81910924991472,
+ 38.6598987874156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1175",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1175 accessories"
+ }
+ },
+ "system": "drone system 1175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91009541953632,
+ 38.02109257211481
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1176",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1176 accessories"
+ }
+ },
+ "system": "drone system 1176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24970859687963,
+ 39.159786316002496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1177",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1177 accessories"
+ }
+ },
+ "system": "drone system 1177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07841019862283,
+ 39.60799478061188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1178",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1178 accessories"
+ }
+ },
+ "system": "drone system 1178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48213751022797,
+ 39.050279483866206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1179 accessories"
+ }
+ },
+ "system": "drone system 1179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15709805870097,
+ 38.21006826237013
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1180",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1180 accessories"
+ }
+ },
+ "system": "drone system 1180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75193374215459,
+ 38.90091977104203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1181",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1181 accessories"
+ }
+ },
+ "system": "drone system 1181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60698301203924,
+ 39.4199470893107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1182",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1182 accessories"
+ }
+ },
+ "system": "drone system 1182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5263275578184,
+ 39.48955783162249
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1183",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1183 accessories"
+ }
+ },
+ "system": "drone system 1183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34943840532536,
+ 38.75624246810335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1184",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1184 accessories"
+ }
+ },
+ "system": "drone system 1184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03757856737322,
+ 39.76611413711391
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1185",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1185 accessories"
+ }
+ },
+ "system": "drone system 1185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6669349875665,
+ 38.886752980744994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1186",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1186 accessories"
+ }
+ },
+ "system": "drone system 1186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46607063229284,
+ 38.517270474198675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1187",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1187 accessories"
+ }
+ },
+ "system": "drone system 1187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41063623475276,
+ 39.237368815363325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1188",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1188 accessories"
+ }
+ },
+ "system": "drone system 1188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63225322995783,
+ 38.547672214573375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1189",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1189 accessories"
+ }
+ },
+ "system": "drone system 1189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32504065866446,
+ 39.09376888005709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1190",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1190 accessories"
+ }
+ },
+ "system": "drone system 1190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71545215306156,
+ 39.23103252495732
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1191",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1191 accessories"
+ }
+ },
+ "system": "drone system 1191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25493900278231,
+ 39.02880469559692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1192",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1192 accessories"
+ }
+ },
+ "system": "drone system 1192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19024590412859,
+ 39.61311177423874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1193",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1193 accessories"
+ }
+ },
+ "system": "drone system 1193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9379883768667,
+ 39.711036680633626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1194",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1194 accessories"
+ }
+ },
+ "system": "drone system 1194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95733689440071,
+ 38.83790291672426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1195",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1195 accessories"
+ }
+ },
+ "system": "drone system 1195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50543866296611,
+ 39.2605515215284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1196",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1196 accessories"
+ }
+ },
+ "system": "drone system 1196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21037185306056,
+ 38.65980766403313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1197",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1197 accessories"
+ }
+ },
+ "system": "drone system 1197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85129832079798,
+ 38.996501071268355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1198",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1198 accessories"
+ }
+ },
+ "system": "drone system 1198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.479967895103,
+ 39.01821231149089
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1199",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1199 accessories"
+ }
+ },
+ "system": "drone system 1199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74496387826942,
+ 39.374126455730476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1200",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1200 accessories"
+ }
+ },
+ "system": "drone system 1200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21146981204491,
+ 38.63914705152956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1201",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1201 accessories"
+ }
+ },
+ "system": "drone system 1201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29762800733135,
+ 38.538143864210156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1202",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1202 accessories"
+ }
+ },
+ "system": "drone system 1202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34554403516559,
+ 38.99821937483153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1203",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1203 accessories"
+ }
+ },
+ "system": "drone system 1203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63091577846042,
+ 38.33479004771454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1204",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1204 accessories"
+ }
+ },
+ "system": "drone system 1204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31864837338217,
+ 39.23829305907549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1205",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1205 accessories"
+ }
+ },
+ "system": "drone system 1205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88272456142144,
+ 38.88341713373279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1206",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1206 accessories"
+ }
+ },
+ "system": "drone system 1206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14166040098101,
+ 39.281968812466985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1207",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1207 accessories"
+ }
+ },
+ "system": "drone system 1207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53675066238834,
+ 38.99411084658119
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1208",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1208 accessories"
+ }
+ },
+ "system": "drone system 1208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6699157138829,
+ 38.39397694331797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1209",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1209 accessories"
+ }
+ },
+ "system": "drone system 1209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85041576246155,
+ 38.7342462977293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1210",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1210 accessories"
+ }
+ },
+ "system": "drone system 1210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2107613698989,
+ 39.65343785085894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1211",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1211 accessories"
+ }
+ },
+ "system": "drone system 1211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08901551318083,
+ 38.03639240201233
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1212",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1212 accessories"
+ }
+ },
+ "system": "drone system 1212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80508819990406,
+ 38.92602538614964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1213",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1213 accessories"
+ }
+ },
+ "system": "drone system 1213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29285792109603,
+ 38.918835045683764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1214",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1214 accessories"
+ }
+ },
+ "system": "drone system 1214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8542818215305,
+ 39.76726881295142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1215 accessories"
+ }
+ },
+ "system": "drone system 1215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0751659037954,
+ 38.814468974247774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1216",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1216 accessories"
+ }
+ },
+ "system": "drone system 1216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55433901488165,
+ 38.56279711260797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1217",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1217 accessories"
+ }
+ },
+ "system": "drone system 1217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46228281184305,
+ 39.41131780960566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1218",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1218 accessories"
+ }
+ },
+ "system": "drone system 1218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51886667740423,
+ 39.50619884169336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1219",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1219 accessories"
+ }
+ },
+ "system": "drone system 1219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32567161457072,
+ 38.11793522054358
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1220",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1220 accessories"
+ }
+ },
+ "system": "drone system 1220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31585918614812,
+ 39.42147118143684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1221",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1221 accessories"
+ }
+ },
+ "system": "drone system 1221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84856334562625,
+ 38.62767860222645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1222",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1222 accessories"
+ }
+ },
+ "system": "drone system 1222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88146893355176,
+ 39.02832933534706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1223",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1223 accessories"
+ }
+ },
+ "system": "drone system 1223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8726880625292,
+ 38.21632532691117
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1224",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1224 accessories"
+ }
+ },
+ "system": "drone system 1224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90349837465004,
+ 38.84989263625585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1225 accessories"
+ }
+ },
+ "system": "drone system 1225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54002306295114,
+ 38.643314867420756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1226",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1226 accessories"
+ }
+ },
+ "system": "drone system 1226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54438316781777,
+ 39.6063024718333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1227",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1227 accessories"
+ }
+ },
+ "system": "drone system 1227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69664325268324,
+ 39.11811773247436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1228",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1228 accessories"
+ }
+ },
+ "system": "drone system 1228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70002387922722,
+ 38.473820894714855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1229",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1229 accessories"
+ }
+ },
+ "system": "drone system 1229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22090990109763,
+ 39.37372847803625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1230",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1230 accessories"
+ }
+ },
+ "system": "drone system 1230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74798591018696,
+ 39.269052799076164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1231",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1231 accessories"
+ }
+ },
+ "system": "drone system 1231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54619031491751,
+ 39.128361783321616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1232",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1232 accessories"
+ }
+ },
+ "system": "drone system 1232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15251001627604,
+ 39.53693629682066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1233",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1233 accessories"
+ }
+ },
+ "system": "drone system 1233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18680318373153,
+ 39.59293128428961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1234",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1234 accessories"
+ }
+ },
+ "system": "drone system 1234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73853197252228,
+ 38.46706515162527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1235",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1235 accessories"
+ }
+ },
+ "system": "drone system 1235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90485062779152,
+ 38.484621287354514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1236",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1236 accessories"
+ }
+ },
+ "system": "drone system 1236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61542674655767,
+ 39.578979480204254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1237",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1237 accessories"
+ }
+ },
+ "system": "drone system 1237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63257386639825,
+ 39.00106505596273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1238",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1238 accessories"
+ }
+ },
+ "system": "drone system 1238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43133490838805,
+ 38.4425257756453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1239",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1239 accessories"
+ }
+ },
+ "system": "drone system 1239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82169218516235,
+ 38.367823849644715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1240",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1240 accessories"
+ }
+ },
+ "system": "drone system 1240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66976768093865,
+ 38.23230062586405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1241",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1241 accessories"
+ }
+ },
+ "system": "drone system 1241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65019302356795,
+ 39.27325543591246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1242",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1242 accessories"
+ }
+ },
+ "system": "drone system 1242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53861514290982,
+ 38.54912887357169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1243",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1243 accessories"
+ }
+ },
+ "system": "drone system 1243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78063103935301,
+ 38.74843341564374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1244",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1244 accessories"
+ }
+ },
+ "system": "drone system 1244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48128277478072,
+ 39.048444022019176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1245",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1245 accessories"
+ }
+ },
+ "system": "drone system 1245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04485302554205,
+ 39.48959814404184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1246",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1246 accessories"
+ }
+ },
+ "system": "drone system 1246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42299532139717,
+ 38.24797768051922
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1247",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1247 accessories"
+ }
+ },
+ "system": "drone system 1247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24173947396227,
+ 38.959884256228676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1248",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1248 accessories"
+ }
+ },
+ "system": "drone system 1248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01057806572925,
+ 39.61723563348224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1249",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1249 accessories"
+ }
+ },
+ "system": "drone system 1249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70193905501024,
+ 38.7111101929531
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1250",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1250 accessories"
+ }
+ },
+ "system": "drone system 1250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54598793491158,
+ 39.37173772174277
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1251",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1251 accessories"
+ }
+ },
+ "system": "drone system 1251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15259930215045,
+ 38.828487438823934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1252",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1252 accessories"
+ }
+ },
+ "system": "drone system 1252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92446305206215,
+ 38.47171434316149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1253",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1253 accessories"
+ }
+ },
+ "system": "drone system 1253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60980705120647,
+ 38.69998542600951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1254",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1254 accessories"
+ }
+ },
+ "system": "drone system 1254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8666873486661,
+ 38.61775369915115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1255",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1255 accessories"
+ }
+ },
+ "system": "drone system 1255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32847917317005,
+ 38.377944954908536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1256",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1256 accessories"
+ }
+ },
+ "system": "drone system 1256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73135881999316,
+ 38.11786995966459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1257",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1257 accessories"
+ }
+ },
+ "system": "drone system 1257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47062874498846,
+ 38.23086409339786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1258",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1258 accessories"
+ }
+ },
+ "system": "drone system 1258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.024953894186,
+ 39.42046176179965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1259",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1259 accessories"
+ }
+ },
+ "system": "drone system 1259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56092165915011,
+ 39.37597849147489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1260",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1260 accessories"
+ }
+ },
+ "system": "drone system 1260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31476166678348,
+ 39.15634946662601
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1261",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1261 accessories"
+ }
+ },
+ "system": "drone system 1261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74682259213513,
+ 39.176508220447715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1262",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1262 accessories"
+ }
+ },
+ "system": "drone system 1262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47940456803873,
+ 39.0280916571855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1263",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1263 accessories"
+ }
+ },
+ "system": "drone system 1263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37964621252526,
+ 38.57143670791578
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1264",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1264 accessories"
+ }
+ },
+ "system": "drone system 1264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26217085441911,
+ 39.181726963639676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1265",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1265 accessories"
+ }
+ },
+ "system": "drone system 1265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61925430629124,
+ 38.53679987063399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1266",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1266 accessories"
+ }
+ },
+ "system": "drone system 1266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39802064686435,
+ 38.9189859137207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1267",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1267 accessories"
+ }
+ },
+ "system": "drone system 1267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65421311833762,
+ 38.799447328529745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1268",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1268 accessories"
+ }
+ },
+ "system": "drone system 1268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90726719610252,
+ 39.7140413778961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1269",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1269 accessories"
+ }
+ },
+ "system": "drone system 1269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91074584933794,
+ 38.14586050268678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1270",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1270 accessories"
+ }
+ },
+ "system": "drone system 1270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60036481565807,
+ 38.41123091086025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1271",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1271 accessories"
+ }
+ },
+ "system": "drone system 1271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98150483925492,
+ 38.98569955257685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1272",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1272 accessories"
+ }
+ },
+ "system": "drone system 1272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97520479130704,
+ 38.31130623988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1273",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1273 accessories"
+ }
+ },
+ "system": "drone system 1273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77415833419455,
+ 39.63867415435424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1274",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1274 accessories"
+ }
+ },
+ "system": "drone system 1274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77470192473734,
+ 38.97500439246654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1275",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1275 accessories"
+ }
+ },
+ "system": "drone system 1275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47675424787049,
+ 38.7153185687347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1276",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1276 accessories"
+ }
+ },
+ "system": "drone system 1276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42773916605118,
+ 39.43447376687435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1277",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1277 accessories"
+ }
+ },
+ "system": "drone system 1277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41077880275112,
+ 39.17704107169098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1278",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1278 accessories"
+ }
+ },
+ "system": "drone system 1278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35649074966982,
+ 38.65470099939103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1279",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1279 accessories"
+ }
+ },
+ "system": "drone system 1279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85091304338036,
+ 39.2430583105692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1280",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1280 accessories"
+ }
+ },
+ "system": "drone system 1280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70802516517259,
+ 38.312325083246776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1281",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1281 accessories"
+ }
+ },
+ "system": "drone system 1281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17704220742584,
+ 38.22756277061833
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1282",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1282 accessories"
+ }
+ },
+ "system": "drone system 1282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77420661580123,
+ 38.182263576040334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1283",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1283 accessories"
+ }
+ },
+ "system": "drone system 1283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6812566141869,
+ 38.978497550693355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1284",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1284 accessories"
+ }
+ },
+ "system": "drone system 1284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65381584979087,
+ 38.25180184324135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1285",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1285 accessories"
+ }
+ },
+ "system": "drone system 1285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66580287713495,
+ 39.70318332834767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1286",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1286 accessories"
+ }
+ },
+ "system": "drone system 1286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3824096066274,
+ 39.461200521538494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1287",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1287 accessories"
+ }
+ },
+ "system": "drone system 1287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7194531499902,
+ 39.216579173843265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1288",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1288 accessories"
+ }
+ },
+ "system": "drone system 1288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38325044420644,
+ 39.012491945487696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1289",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1289 accessories"
+ }
+ },
+ "system": "drone system 1289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.92042323427087,
+ 38.79252478714815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1290",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1290 accessories"
+ }
+ },
+ "system": "drone system 1290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41020351754406,
+ 38.95910013872358
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1291",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1291 accessories"
+ }
+ },
+ "system": "drone system 1291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35068303676815,
+ 38.27883495468742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1292",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1292 accessories"
+ }
+ },
+ "system": "drone system 1292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30530238311289,
+ 39.531305360975914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1293",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1293 accessories"
+ }
+ },
+ "system": "drone system 1293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13862315370557,
+ 38.216074845194164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1294",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1294 accessories"
+ }
+ },
+ "system": "drone system 1294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83172670167237,
+ 38.81045479161261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1295",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1295 accessories"
+ }
+ },
+ "system": "drone system 1295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84295005482272,
+ 39.04147154155192
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1296",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1296 accessories"
+ }
+ },
+ "system": "drone system 1296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73522055825214,
+ 38.667043655087184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1297",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1297 accessories"
+ }
+ },
+ "system": "drone system 1297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29652853036332,
+ 38.288651598604424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1298",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1298 accessories"
+ }
+ },
+ "system": "drone system 1298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68682781695867,
+ 38.965802899531255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1299",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1299 accessories"
+ }
+ },
+ "system": "drone system 1299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51699093843206,
+ 38.41232121556459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1300",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1300 accessories"
+ }
+ },
+ "system": "drone system 1300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0588518242321,
+ 38.41557628557277
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1301",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1301 accessories"
+ }
+ },
+ "system": "drone system 1301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92054609969229,
+ 39.05137948805209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1302",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1302 accessories"
+ }
+ },
+ "system": "drone system 1302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50364722351311,
+ 39.29984860630601
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1303",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1303 accessories"
+ }
+ },
+ "system": "drone system 1303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.92069491602592,
+ 39.062999844959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1304",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1304 accessories"
+ }
+ },
+ "system": "drone system 1304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33455331184553,
+ 38.931321092566684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1305",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1305 accessories"
+ }
+ },
+ "system": "drone system 1305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54719244773824,
+ 38.18289487487895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1306",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1306 accessories"
+ }
+ },
+ "system": "drone system 1306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9702198001186,
+ 39.03865729949779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1307",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1307 accessories"
+ }
+ },
+ "system": "drone system 1307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47464977483986,
+ 38.477491266380525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1308",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1308 accessories"
+ }
+ },
+ "system": "drone system 1308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1060189701724,
+ 39.457384545551506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1309",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1309 accessories"
+ }
+ },
+ "system": "drone system 1309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63634969253758,
+ 38.50991699370922
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1310",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1310 accessories"
+ }
+ },
+ "system": "drone system 1310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63315357910591,
+ 38.726671913675695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1311",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1311 accessories"
+ }
+ },
+ "system": "drone system 1311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54965360495382,
+ 39.09131483313203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1312",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1312 accessories"
+ }
+ },
+ "system": "drone system 1312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32476160922401,
+ 38.84561871484347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1313 accessories"
+ }
+ },
+ "system": "drone system 1313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66735275933382,
+ 38.86288638004396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1314",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1314 accessories"
+ }
+ },
+ "system": "drone system 1314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84055831558449,
+ 39.29784823303503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1315",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1315 accessories"
+ }
+ },
+ "system": "drone system 1315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50605775252023,
+ 39.139037431548616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1316",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1316 accessories"
+ }
+ },
+ "system": "drone system 1316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62675774454613,
+ 38.92696410289744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1317",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1317 accessories"
+ }
+ },
+ "system": "drone system 1317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33186831770901,
+ 38.68688987861406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1318",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1318 accessories"
+ }
+ },
+ "system": "drone system 1318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93693387453153,
+ 39.20886255677443
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1319",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1319 accessories"
+ }
+ },
+ "system": "drone system 1319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.92586124433883,
+ 38.8127724334034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1320",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1320 accessories"
+ }
+ },
+ "system": "drone system 1320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67981329753744,
+ 38.86628976080031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1321",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1321 accessories"
+ }
+ },
+ "system": "drone system 1321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32234461276623,
+ 38.899782861245896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1322",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1322 accessories"
+ }
+ },
+ "system": "drone system 1322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5341009662563,
+ 39.541623808619406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1323",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1323 accessories"
+ }
+ },
+ "system": "drone system 1323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61532050682621,
+ 38.618595053751896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1324",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1324 accessories"
+ }
+ },
+ "system": "drone system 1324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43316624441442,
+ 39.166401524436125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1325",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1325 accessories"
+ }
+ },
+ "system": "drone system 1325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21561289264153,
+ 38.802964171477505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1326",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1326 accessories"
+ }
+ },
+ "system": "drone system 1326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19026520355096,
+ 38.229881711181555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1327",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1327 accessories"
+ }
+ },
+ "system": "drone system 1327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01680308029258,
+ 39.691328044205555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1328",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1328 accessories"
+ }
+ },
+ "system": "drone system 1328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18105011551347,
+ 38.03342819320366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1329",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1329 accessories"
+ }
+ },
+ "system": "drone system 1329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67232489164033,
+ 39.13781447084943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1330",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1330 accessories"
+ }
+ },
+ "system": "drone system 1330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00176948478324,
+ 38.30484210339452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1331",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1331 accessories"
+ }
+ },
+ "system": "drone system 1331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65423255625514,
+ 38.29086305343711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1332",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1332 accessories"
+ }
+ },
+ "system": "drone system 1332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27359475542498,
+ 39.03013376227467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1333",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1333 accessories"
+ }
+ },
+ "system": "drone system 1333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48950772665195,
+ 38.928838153719624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1334",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1334 accessories"
+ }
+ },
+ "system": "drone system 1334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42816311503869,
+ 39.37704822679551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1335",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1335 accessories"
+ }
+ },
+ "system": "drone system 1335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76891379362779,
+ 38.56117864014975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1336",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1336 accessories"
+ }
+ },
+ "system": "drone system 1336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08924298053182,
+ 38.742494743517405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1337",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1337 accessories"
+ }
+ },
+ "system": "drone system 1337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62612732728726,
+ 39.49739767493141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1338",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1338 accessories"
+ }
+ },
+ "system": "drone system 1338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79969817135225,
+ 38.505645873515206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1339",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1339 accessories"
+ }
+ },
+ "system": "drone system 1339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65816133474537,
+ 39.23117102100312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1340",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1340 accessories"
+ }
+ },
+ "system": "drone system 1340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68069947801428,
+ 38.91543977639835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1341",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1341 accessories"
+ }
+ },
+ "system": "drone system 1341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38176763233945,
+ 38.90922976472256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1342",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1342 accessories"
+ }
+ },
+ "system": "drone system 1342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74376506968109,
+ 38.766001742279705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1343",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1343 accessories"
+ }
+ },
+ "system": "drone system 1343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39722549790665,
+ 39.40033933762079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1344",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1344 accessories"
+ }
+ },
+ "system": "drone system 1344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60942049513488,
+ 38.39844502282889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1345",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1345 accessories"
+ }
+ },
+ "system": "drone system 1345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60473988551726,
+ 38.84623429538677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1346",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1346 accessories"
+ }
+ },
+ "system": "drone system 1346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3824042862863,
+ 38.171820527992764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1347",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1347 accessories"
+ }
+ },
+ "system": "drone system 1347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26753350987912,
+ 38.63929410879939
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1348",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1348 accessories"
+ }
+ },
+ "system": "drone system 1348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12068050945818,
+ 39.544974456998524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1349",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1349 accessories"
+ }
+ },
+ "system": "drone system 1349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47447781051423,
+ 38.85563247556748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1350",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1350 accessories"
+ }
+ },
+ "system": "drone system 1350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85187487730488,
+ 39.18256064141836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1351",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1351 accessories"
+ }
+ },
+ "system": "drone system 1351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44705657396337,
+ 39.45736454215454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1352",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1352 accessories"
+ }
+ },
+ "system": "drone system 1352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7905153687866,
+ 38.06991451965692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1353",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1353 accessories"
+ }
+ },
+ "system": "drone system 1353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3584362673786,
+ 38.49456668092921
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1354",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1354 accessories"
+ }
+ },
+ "system": "drone system 1354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7387485761458,
+ 39.57805723322315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1355",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1355 accessories"
+ }
+ },
+ "system": "drone system 1355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39696613045486,
+ 39.48912878212837
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1356",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1356 accessories"
+ }
+ },
+ "system": "drone system 1356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95419235383923,
+ 38.15260685432008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1357",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1357 accessories"
+ }
+ },
+ "system": "drone system 1357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40205738169225,
+ 38.12738864086743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1358 accessories"
+ }
+ },
+ "system": "drone system 1358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56555995725151,
+ 38.97065088641961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1359",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1359 accessories"
+ }
+ },
+ "system": "drone system 1359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48459576270245,
+ 39.04818364164971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1360",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1360 accessories"
+ }
+ },
+ "system": "drone system 1360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67317101220533,
+ 39.31222717567664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1361",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1361 accessories"
+ }
+ },
+ "system": "drone system 1361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41150308270704,
+ 38.75815184422672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1362",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1362 accessories"
+ }
+ },
+ "system": "drone system 1362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79078499723087,
+ 38.58581407066792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1363",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1363 accessories"
+ }
+ },
+ "system": "drone system 1363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3937046122515,
+ 38.82320242077399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1364",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1364 accessories"
+ }
+ },
+ "system": "drone system 1364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41658564093419,
+ 38.60209283213435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1365",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1365 accessories"
+ }
+ },
+ "system": "drone system 1365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67678346082897,
+ 38.47900652390249
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1366",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1366 accessories"
+ }
+ },
+ "system": "drone system 1366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24045310758305,
+ 38.61398297114734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1367",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1367 accessories"
+ }
+ },
+ "system": "drone system 1367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53095949509402,
+ 38.46101180381281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1368",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1368 accessories"
+ }
+ },
+ "system": "drone system 1368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20679123388939,
+ 38.39738889071927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1369",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1369 accessories"
+ }
+ },
+ "system": "drone system 1369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1062743565739,
+ 38.47973617671879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1370 accessories"
+ }
+ },
+ "system": "drone system 1370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32089497159436,
+ 38.6473963012406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1371",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1371 accessories"
+ }
+ },
+ "system": "drone system 1371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34208311345697,
+ 38.88948880768256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1372",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1372 accessories"
+ }
+ },
+ "system": "drone system 1372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14393555206573,
+ 38.60172356789174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1373",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1373 accessories"
+ }
+ },
+ "system": "drone system 1373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30990328006547,
+ 39.15360167145305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1374",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1374 accessories"
+ }
+ },
+ "system": "drone system 1374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72367007930795,
+ 38.29635713972351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1375",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1375 accessories"
+ }
+ },
+ "system": "drone system 1375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7920416681139,
+ 38.507944271151175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1376",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1376 accessories"
+ }
+ },
+ "system": "drone system 1376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67806665142933,
+ 38.456311834529025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1377",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1377 accessories"
+ }
+ },
+ "system": "drone system 1377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22996862092343,
+ 38.29038366993394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1378",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1378 accessories"
+ }
+ },
+ "system": "drone system 1378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1763664090819,
+ 39.1337891800437
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1379",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1379 accessories"
+ }
+ },
+ "system": "drone system 1379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82102720739007,
+ 38.17946445527205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1380",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1380 accessories"
+ }
+ },
+ "system": "drone system 1380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53985003018825,
+ 39.5784817730567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1381",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1381 accessories"
+ }
+ },
+ "system": "drone system 1381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40057161014117,
+ 38.81953642394941
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1382",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1382 accessories"
+ }
+ },
+ "system": "drone system 1382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06237797318683,
+ 39.25412747852299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1383",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1383 accessories"
+ }
+ },
+ "system": "drone system 1383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3711579685543,
+ 39.32356356723523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1384",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1384 accessories"
+ }
+ },
+ "system": "drone system 1384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1594729849061,
+ 38.15903081644707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1385",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1385 accessories"
+ }
+ },
+ "system": "drone system 1385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21771741175519,
+ 39.162556698530686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1386",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1386 accessories"
+ }
+ },
+ "system": "drone system 1386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52531275855696,
+ 38.39104623890346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1387",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1387 accessories"
+ }
+ },
+ "system": "drone system 1387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57403248885952,
+ 39.15415342782986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1388",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1388 accessories"
+ }
+ },
+ "system": "drone system 1388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05861747928913,
+ 39.50867768239366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1389",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1389 accessories"
+ }
+ },
+ "system": "drone system 1389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06228269547576,
+ 39.41018293752331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1390",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1390 accessories"
+ }
+ },
+ "system": "drone system 1390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9064872390044,
+ 38.89487268778508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1391",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1391 accessories"
+ }
+ },
+ "system": "drone system 1391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69998206161738,
+ 38.20116706925442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1392",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1392 accessories"
+ }
+ },
+ "system": "drone system 1392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28561860190898,
+ 38.499527376561346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1393",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1393 accessories"
+ }
+ },
+ "system": "drone system 1393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72047165931814,
+ 38.25852458218907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1394",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1394 accessories"
+ }
+ },
+ "system": "drone system 1394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25278129283018,
+ 38.9564160809427
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1395",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1395 accessories"
+ }
+ },
+ "system": "drone system 1395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59471531328862,
+ 39.43415658075354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1396",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1396 accessories"
+ }
+ },
+ "system": "drone system 1396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42043541605103,
+ 38.612519792709286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1397",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1397 accessories"
+ }
+ },
+ "system": "drone system 1397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17027797999796,
+ 39.13477121877841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1398",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1398 accessories"
+ }
+ },
+ "system": "drone system 1398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0467737693819,
+ 39.739156451784034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1399",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1399 accessories"
+ }
+ },
+ "system": "drone system 1399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77273611988696,
+ 38.563031348608014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1400",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1400 accessories"
+ }
+ },
+ "system": "drone system 1400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09462614341484,
+ 38.94805716592435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1401",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1401 accessories"
+ }
+ },
+ "system": "drone system 1401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17179041194821,
+ 39.49459623396288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1402",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1402 accessories"
+ }
+ },
+ "system": "drone system 1402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53978765824402,
+ 39.49803192438454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1403",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1403 accessories"
+ }
+ },
+ "system": "drone system 1403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47364325914734,
+ 38.15977200259012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1404",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1404 accessories"
+ }
+ },
+ "system": "drone system 1404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03374137017303,
+ 38.74838673045001
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1405",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1405 accessories"
+ }
+ },
+ "system": "drone system 1405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83168327150021,
+ 38.37636670356895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1406",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1406 accessories"
+ }
+ },
+ "system": "drone system 1406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23934182196881,
+ 39.07092431774877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1407",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1407 accessories"
+ }
+ },
+ "system": "drone system 1407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00839598684384,
+ 39.70669483939758
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1408",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1408 accessories"
+ }
+ },
+ "system": "drone system 1408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62897738019161,
+ 39.21130378348794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1409",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1409 accessories"
+ }
+ },
+ "system": "drone system 1409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39380874170286,
+ 38.879625154250355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1410",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1410 accessories"
+ }
+ },
+ "system": "drone system 1410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48589361419518,
+ 39.1479656121473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1411",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1411 accessories"
+ }
+ },
+ "system": "drone system 1411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88533839899442,
+ 39.20314108571451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1412",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1412 accessories"
+ }
+ },
+ "system": "drone system 1412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66252386267396,
+ 38.62649386692231
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1413",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1413 accessories"
+ }
+ },
+ "system": "drone system 1413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72259835834502,
+ 38.68111112830979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1414",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1414 accessories"
+ }
+ },
+ "system": "drone system 1414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53297714673111,
+ 38.47976668168502
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1415",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1415 accessories"
+ }
+ },
+ "system": "drone system 1415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58892994356167,
+ 38.20247388851237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1416",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1416 accessories"
+ }
+ },
+ "system": "drone system 1416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25441031747876,
+ 38.60571292876627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1417",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1417 accessories"
+ }
+ },
+ "system": "drone system 1417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38186817969414,
+ 38.578886315156076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1418",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1418 accessories"
+ }
+ },
+ "system": "drone system 1418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25890785577879,
+ 39.11293613432347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1419",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1419 accessories"
+ }
+ },
+ "system": "drone system 1419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94533143223877,
+ 39.02153649867511
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1420",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1420 accessories"
+ }
+ },
+ "system": "drone system 1420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56999686962855,
+ 38.55097075421445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1421",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1421 accessories"
+ }
+ },
+ "system": "drone system 1421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14582280494969,
+ 39.507788745744996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1422",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1422 accessories"
+ }
+ },
+ "system": "drone system 1422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52812008630791,
+ 39.15394294122566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1423",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1423 accessories"
+ }
+ },
+ "system": "drone system 1423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50485084715399,
+ 38.4415929326989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1424",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1424 accessories"
+ }
+ },
+ "system": "drone system 1424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70075959564183,
+ 38.518132956040304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1425",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1425 accessories"
+ }
+ },
+ "system": "drone system 1425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04996134537734,
+ 39.79372572242172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1426",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1426 accessories"
+ }
+ },
+ "system": "drone system 1426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16424331482006,
+ 38.96693764673411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1427",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1427 accessories"
+ }
+ },
+ "system": "drone system 1427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03213695556502,
+ 39.07442804392311
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1428",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1428 accessories"
+ }
+ },
+ "system": "drone system 1428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85181148881314,
+ 39.353389411759274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1429",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1429 accessories"
+ }
+ },
+ "system": "drone system 1429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17932555964511,
+ 39.19589181012863
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1430",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1430 accessories"
+ }
+ },
+ "system": "drone system 1430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82381327067955,
+ 38.488380386845456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1431",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1431 accessories"
+ }
+ },
+ "system": "drone system 1431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20818384076132,
+ 38.70494579929963
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1432",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1432 accessories"
+ }
+ },
+ "system": "drone system 1432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13385477983759,
+ 38.608240382484205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1433",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1433 accessories"
+ }
+ },
+ "system": "drone system 1433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76806053097823,
+ 38.07526980867079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1434",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1434 accessories"
+ }
+ },
+ "system": "drone system 1434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8997112284111,
+ 39.436714067846964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1435",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1435 accessories"
+ }
+ },
+ "system": "drone system 1435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51789712346603,
+ 38.43477821017465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1436",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1436 accessories"
+ }
+ },
+ "system": "drone system 1436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6473731716221,
+ 39.36644460489135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1437",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1437 accessories"
+ }
+ },
+ "system": "drone system 1437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18222064037494,
+ 38.30989195204611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1438",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1438 accessories"
+ }
+ },
+ "system": "drone system 1438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09805023607525,
+ 38.06690861382679
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1439",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1439 accessories"
+ }
+ },
+ "system": "drone system 1439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40060573082852,
+ 39.0577356487382
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1440",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1440 accessories"
+ }
+ },
+ "system": "drone system 1440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11547645033687,
+ 38.770746960022414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1441",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1441 accessories"
+ }
+ },
+ "system": "drone system 1441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82455829654195,
+ 38.682311120861236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1442",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1442 accessories"
+ }
+ },
+ "system": "drone system 1442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88558433330033,
+ 38.656896371574994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1443",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1443 accessories"
+ }
+ },
+ "system": "drone system 1443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60973297237615,
+ 38.3525713080314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1444",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1444 accessories"
+ }
+ },
+ "system": "drone system 1444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68768294652016,
+ 38.40254472192833
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1445",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1445 accessories"
+ }
+ },
+ "system": "drone system 1445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84307623106633,
+ 38.85326765051855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1446",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1446 accessories"
+ }
+ },
+ "system": "drone system 1446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40103483597872,
+ 39.21939130540389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1447",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1447 accessories"
+ }
+ },
+ "system": "drone system 1447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08302634166513,
+ 38.220782578906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1448",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1448 accessories"
+ }
+ },
+ "system": "drone system 1448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25620663621751,
+ 39.0239521619548
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1449",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1449 accessories"
+ }
+ },
+ "system": "drone system 1449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73270919717908,
+ 38.33691268566243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1450",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1450 accessories"
+ }
+ },
+ "system": "drone system 1450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37213986253325,
+ 39.43958919331023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1451",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1451 accessories"
+ }
+ },
+ "system": "drone system 1451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95813830792919,
+ 38.41323029194565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1452",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1452 accessories"
+ }
+ },
+ "system": "drone system 1452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16504679875571,
+ 38.053786134853176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1453",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1453 accessories"
+ }
+ },
+ "system": "drone system 1453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61293930439012,
+ 38.47906921643331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1454",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1454 accessories"
+ }
+ },
+ "system": "drone system 1454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28581917355463,
+ 39.100577099318905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1455",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1455 accessories"
+ }
+ },
+ "system": "drone system 1455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31815758420083,
+ 38.66100716024943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1456",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1456 accessories"
+ }
+ },
+ "system": "drone system 1456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48815936622255,
+ 38.86910914450823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1457",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1457 accessories"
+ }
+ },
+ "system": "drone system 1457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55193298198868,
+ 39.34236515758202
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1458",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1458 accessories"
+ }
+ },
+ "system": "drone system 1458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31838939626216,
+ 39.65978502780933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1459",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1459 accessories"
+ }
+ },
+ "system": "drone system 1459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17024188334234,
+ 39.067634299803494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1460",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1460 accessories"
+ }
+ },
+ "system": "drone system 1460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50626081075484,
+ 38.71833808683101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1461",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1461 accessories"
+ }
+ },
+ "system": "drone system 1461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97315075652078,
+ 38.91138382166706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1462",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1462 accessories"
+ }
+ },
+ "system": "drone system 1462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38775599475278,
+ 39.07448818789012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1463",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1463 accessories"
+ }
+ },
+ "system": "drone system 1463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34038771078275,
+ 38.43291129201076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1464",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1464 accessories"
+ }
+ },
+ "system": "drone system 1464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26062362651659,
+ 38.245677846196195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1465",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1465 accessories"
+ }
+ },
+ "system": "drone system 1465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90745222477341,
+ 38.54827208238533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1466",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1466 accessories"
+ }
+ },
+ "system": "drone system 1466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40336147057054,
+ 39.16248002361135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1467",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1467 accessories"
+ }
+ },
+ "system": "drone system 1467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84963414892299,
+ 38.43636868781804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1468",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1468 accessories"
+ }
+ },
+ "system": "drone system 1468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40253491678976,
+ 38.73509060054953
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1469",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1469 accessories"
+ }
+ },
+ "system": "drone system 1469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.503541913794,
+ 39.54327046110217
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1470",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1470 accessories"
+ }
+ },
+ "system": "drone system 1470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19246530114697,
+ 39.34857965263633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1471",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1471 accessories"
+ }
+ },
+ "system": "drone system 1471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6869137624648,
+ 38.95371304630404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1472",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1472 accessories"
+ }
+ },
+ "system": "drone system 1472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73233330129231,
+ 38.125629434953424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1473",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1473 accessories"
+ }
+ },
+ "system": "drone system 1473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81447761683584,
+ 38.91762361889646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1474",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1474 accessories"
+ }
+ },
+ "system": "drone system 1474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04428971298827,
+ 39.567016723165594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1475",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1475 accessories"
+ }
+ },
+ "system": "drone system 1475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27778189817369,
+ 38.481749052549006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1476",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1476 accessories"
+ }
+ },
+ "system": "drone system 1476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4120539305487,
+ 39.182759607173224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1477",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1477 accessories"
+ }
+ },
+ "system": "drone system 1477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40851430910006,
+ 38.33294004887539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1478",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1478 accessories"
+ }
+ },
+ "system": "drone system 1478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07592366026857,
+ 38.8891652275093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1479",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1479 accessories"
+ }
+ },
+ "system": "drone system 1479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42849087897002,
+ 39.2710925354976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1480",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1480 accessories"
+ }
+ },
+ "system": "drone system 1480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57803374936245,
+ 39.62038784033071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1481",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1481 accessories"
+ }
+ },
+ "system": "drone system 1481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50011234843443,
+ 39.58506651832537
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1482",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1482 accessories"
+ }
+ },
+ "system": "drone system 1482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36130275909508,
+ 39.101874796609266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1483",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1483 accessories"
+ }
+ },
+ "system": "drone system 1483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62786404708861,
+ 38.54887694776309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1484",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1484 accessories"
+ }
+ },
+ "system": "drone system 1484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75788637845508,
+ 38.768994046532775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1485",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1485 accessories"
+ }
+ },
+ "system": "drone system 1485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83772996380655,
+ 38.64399325145917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1486",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1486 accessories"
+ }
+ },
+ "system": "drone system 1486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46881770388119,
+ 38.490211202552445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1487",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1487 accessories"
+ }
+ },
+ "system": "drone system 1487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87077511331572,
+ 38.65857582248201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1488",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1488 accessories"
+ }
+ },
+ "system": "drone system 1488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.282077639821,
+ 39.2505156426954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1489",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1489 accessories"
+ }
+ },
+ "system": "drone system 1489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11652478773898,
+ 38.765514279893026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1490",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1490 accessories"
+ }
+ },
+ "system": "drone system 1490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98014541947025,
+ 39.03753789793058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1491",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1491 accessories"
+ }
+ },
+ "system": "drone system 1491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52210814218354,
+ 39.578515027901474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1492",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1492 accessories"
+ }
+ },
+ "system": "drone system 1492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45701178185674,
+ 39.57540592353831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1493",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1493 accessories"
+ }
+ },
+ "system": "drone system 1493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68310017749668,
+ 39.03294739440709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1494",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1494 accessories"
+ }
+ },
+ "system": "drone system 1494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49454172485478,
+ 38.1432960342851
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1495",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1495 accessories"
+ }
+ },
+ "system": "drone system 1495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33762983350044,
+ 39.203494942222484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1496",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1496 accessories"
+ }
+ },
+ "system": "drone system 1496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26993731826637,
+ 39.201190338947804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1497",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1497 accessories"
+ }
+ },
+ "system": "drone system 1497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48547035769609,
+ 39.643934465387375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1498",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1498 accessories"
+ }
+ },
+ "system": "drone system 1498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23960620903553,
+ 38.59848277121689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1499",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1499 accessories"
+ }
+ },
+ "system": "drone system 1499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70443466108951,
+ 39.71812557724367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1500",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1500 accessories"
+ }
+ },
+ "system": "drone system 1500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62952830931195,
+ 38.23226730325358
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1501",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1501 accessories"
+ }
+ },
+ "system": "drone system 1501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05808373636775,
+ 38.18036016831575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1502",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1502 accessories"
+ }
+ },
+ "system": "drone system 1502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86192425452867,
+ 38.869124360137576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1503",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1503 accessories"
+ }
+ },
+ "system": "drone system 1503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28583840298616,
+ 38.32777521390496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1504",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1504 accessories"
+ }
+ },
+ "system": "drone system 1504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33766960701497,
+ 39.42620366481434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1505 accessories"
+ }
+ },
+ "system": "drone system 1505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41502360770677,
+ 39.68016655918981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1506",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1506 accessories"
+ }
+ },
+ "system": "drone system 1506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22272560018575,
+ 39.1726052465811
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1507",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1507 accessories"
+ }
+ },
+ "system": "drone system 1507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53462320677035,
+ 39.09022085011476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1508",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1508 accessories"
+ }
+ },
+ "system": "drone system 1508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7159751999918,
+ 39.6095916227072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1509",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1509 accessories"
+ }
+ },
+ "system": "drone system 1509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88455603278348,
+ 38.46785614937771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1510",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1510 accessories"
+ }
+ },
+ "system": "drone system 1510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43000811008044,
+ 39.28568201707479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1511",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1511 accessories"
+ }
+ },
+ "system": "drone system 1511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1935510366736,
+ 38.96737869709495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1512",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1512 accessories"
+ }
+ },
+ "system": "drone system 1512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5694082754825,
+ 38.943857544308386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1513",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1513 accessories"
+ }
+ },
+ "system": "drone system 1513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04009824873565,
+ 38.85348406134731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1514",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1514 accessories"
+ }
+ },
+ "system": "drone system 1514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07718193603972,
+ 38.56937419407023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1515",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1515 accessories"
+ }
+ },
+ "system": "drone system 1515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05159516242976,
+ 39.435604171943815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1516",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1516 accessories"
+ }
+ },
+ "system": "drone system 1516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46743038675363,
+ 38.713926226915454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1517",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1517 accessories"
+ }
+ },
+ "system": "drone system 1517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81615238016761,
+ 39.60879621150123
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1518",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1518 accessories"
+ }
+ },
+ "system": "drone system 1518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31784889274911,
+ 38.94243259665031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1519",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1519 accessories"
+ }
+ },
+ "system": "drone system 1519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88462106787536,
+ 38.2593231217513
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1520",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1520 accessories"
+ }
+ },
+ "system": "drone system 1520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25170984194226,
+ 38.719638899332146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1521",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1521 accessories"
+ }
+ },
+ "system": "drone system 1521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00870791146372,
+ 38.64723337545729
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1522",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1522 accessories"
+ }
+ },
+ "system": "drone system 1522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45572082705642,
+ 39.53263681679354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1523",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1523 accessories"
+ }
+ },
+ "system": "drone system 1523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42298518052134,
+ 38.90976684632515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1524",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1524 accessories"
+ }
+ },
+ "system": "drone system 1524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8017723243896,
+ 38.703000931063734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1525",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1525 accessories"
+ }
+ },
+ "system": "drone system 1525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8036634843044,
+ 38.243642573079576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1526",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1526 accessories"
+ }
+ },
+ "system": "drone system 1526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73391115526485,
+ 38.8803462470306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1527",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1527 accessories"
+ }
+ },
+ "system": "drone system 1527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37660981968213,
+ 38.59739456732992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1528",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1528 accessories"
+ }
+ },
+ "system": "drone system 1528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92957830480123,
+ 39.13924269361954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1529",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1529 accessories"
+ }
+ },
+ "system": "drone system 1529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73547753701081,
+ 38.567406213126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1530",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1530 accessories"
+ }
+ },
+ "system": "drone system 1530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17870660076407,
+ 39.36056181387323
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1531",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1531 accessories"
+ }
+ },
+ "system": "drone system 1531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99464343432498,
+ 38.75188874804348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1532",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1532 accessories"
+ }
+ },
+ "system": "drone system 1532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54909462210328,
+ 39.20280931783307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1533",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1533 accessories"
+ }
+ },
+ "system": "drone system 1533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84151744806954,
+ 38.50126564118426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1534",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1534 accessories"
+ }
+ },
+ "system": "drone system 1534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27412993078802,
+ 38.96807662147975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1535",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1535 accessories"
+ }
+ },
+ "system": "drone system 1535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53717645795577,
+ 39.44541172203495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1536",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1536 accessories"
+ }
+ },
+ "system": "drone system 1536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84658405551882,
+ 38.5695992825775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1537",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1537 accessories"
+ }
+ },
+ "system": "drone system 1537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32599605210063,
+ 39.21389860020746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1538",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1538 accessories"
+ }
+ },
+ "system": "drone system 1538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8174196317985,
+ 39.754032090859624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1539",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1539 accessories"
+ }
+ },
+ "system": "drone system 1539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48597701200309,
+ 38.334846255196695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1540",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1540 accessories"
+ }
+ },
+ "system": "drone system 1540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34747292351534,
+ 38.111494650677464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1541",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1541 accessories"
+ }
+ },
+ "system": "drone system 1541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85724032327337,
+ 39.23097835710973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1542",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1542 accessories"
+ }
+ },
+ "system": "drone system 1542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46786922027202,
+ 38.61629498869511
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1543",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1543 accessories"
+ }
+ },
+ "system": "drone system 1543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9501667508643,
+ 38.37043951206773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1544",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1544 accessories"
+ }
+ },
+ "system": "drone system 1544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58145487342277,
+ 39.45552926171447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1545",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1545 accessories"
+ }
+ },
+ "system": "drone system 1545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64106824381099,
+ 39.18735362639439
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1546",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1546 accessories"
+ }
+ },
+ "system": "drone system 1546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83429937364022,
+ 38.10087707734616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1547",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1547 accessories"
+ }
+ },
+ "system": "drone system 1547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60101768058594,
+ 39.292233195210066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1548",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1548 accessories"
+ }
+ },
+ "system": "drone system 1548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81364878956121,
+ 38.99033555957429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1549",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1549 accessories"
+ }
+ },
+ "system": "drone system 1549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56125789580845,
+ 38.916916727560526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1550",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1550 accessories"
+ }
+ },
+ "system": "drone system 1550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33002528565275,
+ 38.098259029342316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1551",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1551 accessories"
+ }
+ },
+ "system": "drone system 1551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7011334249562,
+ 39.5711468295821
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1552",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1552 accessories"
+ }
+ },
+ "system": "drone system 1552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41281265923591,
+ 39.46787226862171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1553",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1553 accessories"
+ }
+ },
+ "system": "drone system 1553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3375070186376,
+ 38.638227233986925
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1554",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1554 accessories"
+ }
+ },
+ "system": "drone system 1554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47530894723583,
+ 38.21567685651166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1555",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1555 accessories"
+ }
+ },
+ "system": "drone system 1555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1938512217212,
+ 38.731760923446444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1556",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1556 accessories"
+ }
+ },
+ "system": "drone system 1556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34624376449995,
+ 38.909891215016884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1557",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1557 accessories"
+ }
+ },
+ "system": "drone system 1557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61336024170802,
+ 38.49417520964793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1558",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1558 accessories"
+ }
+ },
+ "system": "drone system 1558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0725306184519,
+ 39.03775113562668
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1559",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1559 accessories"
+ }
+ },
+ "system": "drone system 1559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14672326272013,
+ 39.52554558509571
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1560",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1560 accessories"
+ }
+ },
+ "system": "drone system 1560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53938255291548,
+ 38.80183216625669
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1561",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1561 accessories"
+ }
+ },
+ "system": "drone system 1561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32760065513848,
+ 39.05853114212797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1562",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1562 accessories"
+ }
+ },
+ "system": "drone system 1562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78539303172887,
+ 38.10526117075143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1563",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1563 accessories"
+ }
+ },
+ "system": "drone system 1563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99768035921059,
+ 38.55833437267852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1564",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1564 accessories"
+ }
+ },
+ "system": "drone system 1564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89887304697673,
+ 38.24904328905076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1565",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1565 accessories"
+ }
+ },
+ "system": "drone system 1565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83147763248385,
+ 38.64566645744034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1566 accessories"
+ }
+ },
+ "system": "drone system 1566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63931563350374,
+ 39.374005008526474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1567",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1567 accessories"
+ }
+ },
+ "system": "drone system 1567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1905295163154,
+ 39.21885620087878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1568",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1568 accessories"
+ }
+ },
+ "system": "drone system 1568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8916128071702,
+ 39.35561729644707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1569",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1569 accessories"
+ }
+ },
+ "system": "drone system 1569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14498467070347,
+ 38.02500130631649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1570",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1570 accessories"
+ }
+ },
+ "system": "drone system 1570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63412347989785,
+ 39.610059230761514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1571",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1571 accessories"
+ }
+ },
+ "system": "drone system 1571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44346288830833,
+ 38.4688795468876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1572",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1572 accessories"
+ }
+ },
+ "system": "drone system 1572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59255431919614,
+ 38.168247594661715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1573",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1573 accessories"
+ }
+ },
+ "system": "drone system 1573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66753024769221,
+ 38.471241982242894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1574",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1574 accessories"
+ }
+ },
+ "system": "drone system 1574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65929906543906,
+ 38.65686149052252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1575",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1575 accessories"
+ }
+ },
+ "system": "drone system 1575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68086682858954,
+ 39.69086043841878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1576",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1576 accessories"
+ }
+ },
+ "system": "drone system 1576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69594726527855,
+ 38.497679318214665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1577",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1577 accessories"
+ }
+ },
+ "system": "drone system 1577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3375947062607,
+ 39.00413418650303
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1578",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1578 accessories"
+ }
+ },
+ "system": "drone system 1578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46366135744839,
+ 39.254135615498576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1579",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1579 accessories"
+ }
+ },
+ "system": "drone system 1579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52150687024948,
+ 38.668488786146874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1580",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1580 accessories"
+ }
+ },
+ "system": "drone system 1580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4608497091711,
+ 39.44227346499315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1581",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1581 accessories"
+ }
+ },
+ "system": "drone system 1581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04538476056621,
+ 39.39602747741984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1582",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1582 accessories"
+ }
+ },
+ "system": "drone system 1582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49937093509864,
+ 39.344124878238894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1583",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1583 accessories"
+ }
+ },
+ "system": "drone system 1583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91399976389546,
+ 38.84701924881449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1584",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1584 accessories"
+ }
+ },
+ "system": "drone system 1584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27708782353093,
+ 39.03343181591209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1585",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1585 accessories"
+ }
+ },
+ "system": "drone system 1585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37708367074316,
+ 38.66635103879081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1586",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1586 accessories"
+ }
+ },
+ "system": "drone system 1586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20484331749448,
+ 39.126512899113145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1587",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1587 accessories"
+ }
+ },
+ "system": "drone system 1587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83855274948631,
+ 38.70181751207196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1588",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1588 accessories"
+ }
+ },
+ "system": "drone system 1588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35245335146733,
+ 39.05652249154275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1589",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1589 accessories"
+ }
+ },
+ "system": "drone system 1589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56669697048476,
+ 39.08318561546237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1590",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1590 accessories"
+ }
+ },
+ "system": "drone system 1590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34445467961831,
+ 38.679695345443825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1591",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1591 accessories"
+ }
+ },
+ "system": "drone system 1591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8218578859322,
+ 39.10649129870632
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1592",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1592 accessories"
+ }
+ },
+ "system": "drone system 1592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8157638213948,
+ 38.859761107004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1593",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1593 accessories"
+ }
+ },
+ "system": "drone system 1593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68882959784762,
+ 39.09788703323136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1594",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1594 accessories"
+ }
+ },
+ "system": "drone system 1594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51517131206433,
+ 38.52356838158635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1595",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1595 accessories"
+ }
+ },
+ "system": "drone system 1595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68375559844148,
+ 38.157009834218854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1596",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1596 accessories"
+ }
+ },
+ "system": "drone system 1596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59421477165102,
+ 38.35644987719646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1597",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1597 accessories"
+ }
+ },
+ "system": "drone system 1597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47451515625747,
+ 38.73565909299271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1598",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1598 accessories"
+ }
+ },
+ "system": "drone system 1598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38004720979798,
+ 39.25289498526548
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1599",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1599 accessories"
+ }
+ },
+ "system": "drone system 1599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02388932048221,
+ 39.40743862023209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1600",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1600 accessories"
+ }
+ },
+ "system": "drone system 1600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39676443530222,
+ 39.57050993921397
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1601",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1601 accessories"
+ }
+ },
+ "system": "drone system 1601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61902830499255,
+ 39.53828264865175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1602",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1602 accessories"
+ }
+ },
+ "system": "drone system 1602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41927983812391,
+ 39.026298343710856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1603",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1603 accessories"
+ }
+ },
+ "system": "drone system 1603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1336220875738,
+ 39.68658314603461
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1604",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1604 accessories"
+ }
+ },
+ "system": "drone system 1604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5448849976691,
+ 38.354454325745095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1605",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1605 accessories"
+ }
+ },
+ "system": "drone system 1605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53256617498735,
+ 38.24691297175471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1606",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1606 accessories"
+ }
+ },
+ "system": "drone system 1606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15839418635791,
+ 38.83834937314812
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1607",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1607 accessories"
+ }
+ },
+ "system": "drone system 1607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68046957309734,
+ 38.96818032361921
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1608",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1608 accessories"
+ }
+ },
+ "system": "drone system 1608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15236536464185,
+ 39.53594742701978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1609",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1609 accessories"
+ }
+ },
+ "system": "drone system 1609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7792902973101,
+ 39.620718519538585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1610",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1610 accessories"
+ }
+ },
+ "system": "drone system 1610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5582673101365,
+ 39.33322752387606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1611",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1611 accessories"
+ }
+ },
+ "system": "drone system 1611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44316263350922,
+ 39.21468811641973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1612",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1612 accessories"
+ }
+ },
+ "system": "drone system 1612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50777862727301,
+ 38.926927048557474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1613",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1613 accessories"
+ }
+ },
+ "system": "drone system 1613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0404276809957,
+ 39.27032836727438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1614",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1614 accessories"
+ }
+ },
+ "system": "drone system 1614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76453126603533,
+ 38.664170672665904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1615",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1615 accessories"
+ }
+ },
+ "system": "drone system 1615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00239881820643,
+ 39.72462898092383
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1616",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1616 accessories"
+ }
+ },
+ "system": "drone system 1616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77373015879903,
+ 39.02066711720173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1617",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1617 accessories"
+ }
+ },
+ "system": "drone system 1617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42486925100457,
+ 38.60535666655636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1618",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1618 accessories"
+ }
+ },
+ "system": "drone system 1618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59785878967057,
+ 38.402491495500676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1619",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1619 accessories"
+ }
+ },
+ "system": "drone system 1619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68320475502205,
+ 38.38246056917483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1620",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1620 accessories"
+ }
+ },
+ "system": "drone system 1620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69404854036864,
+ 39.22996939594711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1621",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1621 accessories"
+ }
+ },
+ "system": "drone system 1621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58252179032264,
+ 38.97721823959816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1622",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1622 accessories"
+ }
+ },
+ "system": "drone system 1622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3778181302962,
+ 38.66518639940609
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1623",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1623 accessories"
+ }
+ },
+ "system": "drone system 1623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04630450710245,
+ 38.98201388400414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1624",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1624 accessories"
+ }
+ },
+ "system": "drone system 1624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2022132683255,
+ 39.03003216039424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1625",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1625 accessories"
+ }
+ },
+ "system": "drone system 1625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78468631409521,
+ 39.03246909090148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1626",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1626 accessories"
+ }
+ },
+ "system": "drone system 1626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8027179589143,
+ 39.128864010886424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1627",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1627 accessories"
+ }
+ },
+ "system": "drone system 1627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9621325250261,
+ 38.545971810414656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1628",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1628 accessories"
+ }
+ },
+ "system": "drone system 1628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52187608178406,
+ 38.43951026665905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1629",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1629 accessories"
+ }
+ },
+ "system": "drone system 1629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46979180238789,
+ 38.318009967629735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1630",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1630 accessories"
+ }
+ },
+ "system": "drone system 1630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26934972347662,
+ 38.107629077740505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1631",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1631 accessories"
+ }
+ },
+ "system": "drone system 1631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8134309542279,
+ 39.59363594700984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1632",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1632 accessories"
+ }
+ },
+ "system": "drone system 1632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55778241789912,
+ 38.85056569923768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1633",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1633 accessories"
+ }
+ },
+ "system": "drone system 1633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89842835130631,
+ 38.382132881111524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1634",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1634 accessories"
+ }
+ },
+ "system": "drone system 1634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24590403420528,
+ 38.91614388735261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1635",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1635 accessories"
+ }
+ },
+ "system": "drone system 1635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57172682624588,
+ 39.596874963500554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1636",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1636 accessories"
+ }
+ },
+ "system": "drone system 1636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72033610330253,
+ 38.28806348892081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1637",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1637 accessories"
+ }
+ },
+ "system": "drone system 1637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43962027251531,
+ 39.42768917490987
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1638",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1638 accessories"
+ }
+ },
+ "system": "drone system 1638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42035850763834,
+ 38.33445541858601
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1639",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1639 accessories"
+ }
+ },
+ "system": "drone system 1639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34776892700528,
+ 38.82814203391806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1640",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1640 accessories"
+ }
+ },
+ "system": "drone system 1640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01110971418198,
+ 38.22562543218237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1641",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1641 accessories"
+ }
+ },
+ "system": "drone system 1641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71583132671074,
+ 39.134540837342215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1642",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1642 accessories"
+ }
+ },
+ "system": "drone system 1642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76363962246174,
+ 38.189431642725594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1643",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1643 accessories"
+ }
+ },
+ "system": "drone system 1643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81480584226655,
+ 39.02036162724796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1644",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1644 accessories"
+ }
+ },
+ "system": "drone system 1644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60282029990627,
+ 38.26654860789705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1645",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1645 accessories"
+ }
+ },
+ "system": "drone system 1645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45058575148246,
+ 38.78948093762431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1646",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1646 accessories"
+ }
+ },
+ "system": "drone system 1646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49764540990112,
+ 38.875517369232476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1647",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1647 accessories"
+ }
+ },
+ "system": "drone system 1647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70433433302378,
+ 38.9326836733558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1648",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1648 accessories"
+ }
+ },
+ "system": "drone system 1648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17861993963571,
+ 39.025623429696765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1649",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1649 accessories"
+ }
+ },
+ "system": "drone system 1649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30713152555488,
+ 39.41725378803401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1650",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1650 accessories"
+ }
+ },
+ "system": "drone system 1650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72798546012167,
+ 39.27600399704207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1651",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1651 accessories"
+ }
+ },
+ "system": "drone system 1651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9303053624957,
+ 38.34627571707443
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1652",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1652 accessories"
+ }
+ },
+ "system": "drone system 1652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07621902898676,
+ 38.87626111637546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1653",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1653 accessories"
+ }
+ },
+ "system": "drone system 1653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88945805602633,
+ 39.17854431245438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1654",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1654 accessories"
+ }
+ },
+ "system": "drone system 1654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8458859897037,
+ 39.140850736732986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1655",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1655 accessories"
+ }
+ },
+ "system": "drone system 1655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63006702605816,
+ 39.098636168802265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1656",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1656 accessories"
+ }
+ },
+ "system": "drone system 1656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45221769596542,
+ 39.40249226895813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1657",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1657 accessories"
+ }
+ },
+ "system": "drone system 1657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36720885883187,
+ 39.6483970482907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1658",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1658 accessories"
+ }
+ },
+ "system": "drone system 1658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37573515893932,
+ 38.15910098703862
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1659",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1659 accessories"
+ }
+ },
+ "system": "drone system 1659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17581667271675,
+ 39.33997231270672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1660",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1660 accessories"
+ }
+ },
+ "system": "drone system 1660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3105255826341,
+ 38.572610574594556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1661",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1661 accessories"
+ }
+ },
+ "system": "drone system 1661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96857348518466,
+ 38.79321863709409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1662",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1662 accessories"
+ }
+ },
+ "system": "drone system 1662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8139742369329,
+ 39.352565382627006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1663",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1663 accessories"
+ }
+ },
+ "system": "drone system 1663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34592874690438,
+ 39.41153507266561
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1664",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1664 accessories"
+ }
+ },
+ "system": "drone system 1664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1725762206038,
+ 39.75230275740927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1665",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1665 accessories"
+ }
+ },
+ "system": "drone system 1665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85072068638861,
+ 39.2817517947888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1666",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1666 accessories"
+ }
+ },
+ "system": "drone system 1666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38292003268296,
+ 38.9469802468836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1667",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1667 accessories"
+ }
+ },
+ "system": "drone system 1667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83346300070704,
+ 39.37111550865065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1668",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1668 accessories"
+ }
+ },
+ "system": "drone system 1668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9058345661061,
+ 38.51831604045172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1669",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1669 accessories"
+ }
+ },
+ "system": "drone system 1669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21602534308924,
+ 38.58563050249888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1670",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1670 accessories"
+ }
+ },
+ "system": "drone system 1670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34867055321885,
+ 38.56189694076853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1671",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1671 accessories"
+ }
+ },
+ "system": "drone system 1671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93146329835125,
+ 38.59680851196421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1672",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1672 accessories"
+ }
+ },
+ "system": "drone system 1672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80711150272587,
+ 38.914295640504555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1673",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1673 accessories"
+ }
+ },
+ "system": "drone system 1673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58509877185256,
+ 38.36699309308651
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1674",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1674 accessories"
+ }
+ },
+ "system": "drone system 1674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83098412702859,
+ 38.15054964879333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1675",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1675 accessories"
+ }
+ },
+ "system": "drone system 1675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49836413370102,
+ 38.65683781591475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1676",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1676 accessories"
+ }
+ },
+ "system": "drone system 1676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25127071337317,
+ 39.49598163459433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1677",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1677 accessories"
+ }
+ },
+ "system": "drone system 1677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70619874222388,
+ 38.51090429189651
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1678",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1678 accessories"
+ }
+ },
+ "system": "drone system 1678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17012918374039,
+ 39.75872755782186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1679",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1679 accessories"
+ }
+ },
+ "system": "drone system 1679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59333366330752,
+ 38.754889891969675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1680",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1680 accessories"
+ }
+ },
+ "system": "drone system 1680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50386859544025,
+ 39.106865215994866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1681",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1681 accessories"
+ }
+ },
+ "system": "drone system 1681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56998600940743,
+ 39.30911142672038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1682",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1682 accessories"
+ }
+ },
+ "system": "drone system 1682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78123658477588,
+ 39.014943919652026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1683",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1683 accessories"
+ }
+ },
+ "system": "drone system 1683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4051691714071,
+ 39.15906521667553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1684",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1684 accessories"
+ }
+ },
+ "system": "drone system 1684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82461266364915,
+ 39.20995380217937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1685",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1685 accessories"
+ }
+ },
+ "system": "drone system 1685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11984242083805,
+ 39.64961860814918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1686",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1686 accessories"
+ }
+ },
+ "system": "drone system 1686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7492858057616,
+ 38.88190735182047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1687",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1687 accessories"
+ }
+ },
+ "system": "drone system 1687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05993711854597,
+ 38.02048113068333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1688",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1688 accessories"
+ }
+ },
+ "system": "drone system 1688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34921543701697,
+ 39.00378379124823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1689",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1689 accessories"
+ }
+ },
+ "system": "drone system 1689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26080603009201,
+ 39.13672757315431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1690",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1690 accessories"
+ }
+ },
+ "system": "drone system 1690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63899848613433,
+ 38.634315989727966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1691",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1691 accessories"
+ }
+ },
+ "system": "drone system 1691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81653973874738,
+ 39.33668997488576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1692",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1692 accessories"
+ }
+ },
+ "system": "drone system 1692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4237075832656,
+ 39.0173770577618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1693",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1693 accessories"
+ }
+ },
+ "system": "drone system 1693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45158044108064,
+ 38.23918881415574
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1694",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1694 accessories"
+ }
+ },
+ "system": "drone system 1694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42890537621615,
+ 39.17875689511514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1695",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1695 accessories"
+ }
+ },
+ "system": "drone system 1695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51060839822253,
+ 39.57624595349697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1696",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1696 accessories"
+ }
+ },
+ "system": "drone system 1696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15721128598074,
+ 39.21432922550274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1697",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1697 accessories"
+ }
+ },
+ "system": "drone system 1697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3923825619736,
+ 39.38346768823126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1698",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1698 accessories"
+ }
+ },
+ "system": "drone system 1698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22868524470307,
+ 38.758967109472614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1699",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1699 accessories"
+ }
+ },
+ "system": "drone system 1699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0149464256461,
+ 39.52534320236044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1700",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1700 accessories"
+ }
+ },
+ "system": "drone system 1700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3109175765254,
+ 38.52136335472327
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1701",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1701 accessories"
+ }
+ },
+ "system": "drone system 1701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52153266007976,
+ 39.0657772532692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1702",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1702 accessories"
+ }
+ },
+ "system": "drone system 1702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72296407382917,
+ 38.622190377187856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1703",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1703 accessories"
+ }
+ },
+ "system": "drone system 1703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94965642913876,
+ 38.31023953451366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1704",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1704 accessories"
+ }
+ },
+ "system": "drone system 1704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69463114876893,
+ 39.56644693453629
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1705",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1705 accessories"
+ }
+ },
+ "system": "drone system 1705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01800704885454,
+ 38.58421158844136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1706",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1706 accessories"
+ }
+ },
+ "system": "drone system 1706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36491179226273,
+ 38.8454295455196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1707",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1707 accessories"
+ }
+ },
+ "system": "drone system 1707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30164851284181,
+ 38.98183291853217
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1708",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1708 accessories"
+ }
+ },
+ "system": "drone system 1708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80861430348676,
+ 38.61110893991267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1709",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1709 accessories"
+ }
+ },
+ "system": "drone system 1709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70181701919877,
+ 38.702030121291855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1710",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1710 accessories"
+ }
+ },
+ "system": "drone system 1710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25445043868108,
+ 39.159786337720995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1711",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1711 accessories"
+ }
+ },
+ "system": "drone system 1711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75952911337203,
+ 38.7269044178848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1712",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1712 accessories"
+ }
+ },
+ "system": "drone system 1712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63289440606076,
+ 38.41696561377966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1713",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1713 accessories"
+ }
+ },
+ "system": "drone system 1713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6279193846191,
+ 38.17055037169839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1714",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1714 accessories"
+ }
+ },
+ "system": "drone system 1714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33967199206072,
+ 39.35371646426592
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1715",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1715 accessories"
+ }
+ },
+ "system": "drone system 1715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29724455619561,
+ 38.680978088226745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1716",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1716 accessories"
+ }
+ },
+ "system": "drone system 1716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26461037559476,
+ 38.78823699777954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1717",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1717 accessories"
+ }
+ },
+ "system": "drone system 1717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57019342309229,
+ 39.225330927498824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1718",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1718 accessories"
+ }
+ },
+ "system": "drone system 1718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94009670701655,
+ 38.216218778842254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1719",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1719 accessories"
+ }
+ },
+ "system": "drone system 1719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2686210504018,
+ 38.616739759492894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1720",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1720 accessories"
+ }
+ },
+ "system": "drone system 1720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51609267079672,
+ 38.580132650517974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1721",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1721 accessories"
+ }
+ },
+ "system": "drone system 1721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08991065041327,
+ 38.52630136956036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1722",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1722 accessories"
+ }
+ },
+ "system": "drone system 1722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73304956370767,
+ 39.2442202239068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1723",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1723 accessories"
+ }
+ },
+ "system": "drone system 1723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4688274081525,
+ 38.91620813662309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1724",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1724 accessories"
+ }
+ },
+ "system": "drone system 1724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78734058796145,
+ 39.054555016453115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1725",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1725 accessories"
+ }
+ },
+ "system": "drone system 1725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14940887244381,
+ 38.69286524411919
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1726",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1726 accessories"
+ }
+ },
+ "system": "drone system 1726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86512230051811,
+ 39.379323436602505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1727",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1727 accessories"
+ }
+ },
+ "system": "drone system 1727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72595613639392,
+ 38.89330144973992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1728",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1728 accessories"
+ }
+ },
+ "system": "drone system 1728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51802309019315,
+ 39.13247067422492
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1729",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1729 accessories"
+ }
+ },
+ "system": "drone system 1729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2715255834903,
+ 38.914148507123215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1730",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1730 accessories"
+ }
+ },
+ "system": "drone system 1730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28909722913345,
+ 38.77076931778764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1731",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1731 accessories"
+ }
+ },
+ "system": "drone system 1731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96998820253303,
+ 39.52118552407894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1732",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1732 accessories"
+ }
+ },
+ "system": "drone system 1732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06430891414735,
+ 39.740606133014396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1733",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1733 accessories"
+ }
+ },
+ "system": "drone system 1733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56335268352368,
+ 38.73305253663661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1734",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1734 accessories"
+ }
+ },
+ "system": "drone system 1734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59574199702985,
+ 38.68546522794557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1735",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1735 accessories"
+ }
+ },
+ "system": "drone system 1735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24215276794142,
+ 39.110421400255845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1736",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1736 accessories"
+ }
+ },
+ "system": "drone system 1736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20187342111494,
+ 38.94704349225484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1737",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1737 accessories"
+ }
+ },
+ "system": "drone system 1737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28188685630742,
+ 39.23418193410282
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1738",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1738 accessories"
+ }
+ },
+ "system": "drone system 1738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5098000586073,
+ 39.43271466467844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1739",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1739 accessories"
+ }
+ },
+ "system": "drone system 1739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16172088448454,
+ 38.81237457403319
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1740",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1740 accessories"
+ }
+ },
+ "system": "drone system 1740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96633282887984,
+ 39.728528755366284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1741",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1741 accessories"
+ }
+ },
+ "system": "drone system 1741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59073513729415,
+ 39.10088785653439
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1742",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1742 accessories"
+ }
+ },
+ "system": "drone system 1742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61208085848926,
+ 39.07169420126518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1743",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1743 accessories"
+ }
+ },
+ "system": "drone system 1743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40210716853747,
+ 39.14274267627616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1744",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1744 accessories"
+ }
+ },
+ "system": "drone system 1744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18919657755428,
+ 38.61881499202952
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1745",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1745 accessories"
+ }
+ },
+ "system": "drone system 1745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99819544021958,
+ 39.24163222647743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1746",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1746 accessories"
+ }
+ },
+ "system": "drone system 1746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36154165046842,
+ 39.3613764586539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1747",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1747 accessories"
+ }
+ },
+ "system": "drone system 1747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70972546608503,
+ 39.36218788307602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1748",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1748 accessories"
+ }
+ },
+ "system": "drone system 1748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19498868854132,
+ 39.0207864777143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1749",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1749 accessories"
+ }
+ },
+ "system": "drone system 1749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52723562387848,
+ 38.54297473271212
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1750",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1750 accessories"
+ }
+ },
+ "system": "drone system 1750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36224863487989,
+ 38.55669657229263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1751",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1751 accessories"
+ }
+ },
+ "system": "drone system 1751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23580102340769,
+ 38.711864099296534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1752",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1752 accessories"
+ }
+ },
+ "system": "drone system 1752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18861094623368,
+ 39.026539309066436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1753",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1753 accessories"
+ }
+ },
+ "system": "drone system 1753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48276291643134,
+ 38.20988920591281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1754",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1754 accessories"
+ }
+ },
+ "system": "drone system 1754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32105539890982,
+ 39.13100891579547
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1755",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1755 accessories"
+ }
+ },
+ "system": "drone system 1755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17650549943191,
+ 39.227387448184196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1756",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1756 accessories"
+ }
+ },
+ "system": "drone system 1756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53290056843676,
+ 39.05114603718534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1757",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1757 accessories"
+ }
+ },
+ "system": "drone system 1757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21117629826436,
+ 38.867714526141285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1758",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1758 accessories"
+ }
+ },
+ "system": "drone system 1758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87131010418045,
+ 38.566676327720444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1759",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1759 accessories"
+ }
+ },
+ "system": "drone system 1759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25472522162038,
+ 39.6521555942824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1760",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1760 accessories"
+ }
+ },
+ "system": "drone system 1760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68839519659836,
+ 39.723839551063705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1761",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1761 accessories"
+ }
+ },
+ "system": "drone system 1761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20851482651513,
+ 39.04936659182436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1762",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1762 accessories"
+ }
+ },
+ "system": "drone system 1762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84511526046113,
+ 39.35057863261982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1763",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1763 accessories"
+ }
+ },
+ "system": "drone system 1763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09634992178158,
+ 39.38101065610299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1764",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1764 accessories"
+ }
+ },
+ "system": "drone system 1764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31914952271408,
+ 38.1423634406198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1765",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1765 accessories"
+ }
+ },
+ "system": "drone system 1765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93714019658269,
+ 38.167126233906934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1766",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1766 accessories"
+ }
+ },
+ "system": "drone system 1766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61879438332657,
+ 38.57207728171384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1767",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1767 accessories"
+ }
+ },
+ "system": "drone system 1767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4141867532849,
+ 38.2786787289703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1768",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1768 accessories"
+ }
+ },
+ "system": "drone system 1768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65338889129687,
+ 39.00758621731255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1769",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1769 accessories"
+ }
+ },
+ "system": "drone system 1769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2947550277247,
+ 38.19431920469436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1770",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1770 accessories"
+ }
+ },
+ "system": "drone system 1770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25081351275674,
+ 39.21982172965024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1771",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1771 accessories"
+ }
+ },
+ "system": "drone system 1771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24917124329498,
+ 38.822224769347024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1772",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1772 accessories"
+ }
+ },
+ "system": "drone system 1772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89497560412039,
+ 39.42748122651222
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1773 accessories"
+ }
+ },
+ "system": "drone system 1773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4003155196186,
+ 39.18933749427288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1774",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1774 accessories"
+ }
+ },
+ "system": "drone system 1774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47028710108623,
+ 39.511086151303765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1775",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1775 accessories"
+ }
+ },
+ "system": "drone system 1775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56706027751237,
+ 39.353260547066974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1776",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1776 accessories"
+ }
+ },
+ "system": "drone system 1776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96800541745702,
+ 38.83907800973077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1777",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1777 accessories"
+ }
+ },
+ "system": "drone system 1777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10593656618694,
+ 38.57713760327081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1778",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1778 accessories"
+ }
+ },
+ "system": "drone system 1778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86223692935124,
+ 39.50538268030936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1779",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1779 accessories"
+ }
+ },
+ "system": "drone system 1779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26950322639091,
+ 38.38525053294493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1780",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1780 accessories"
+ }
+ },
+ "system": "drone system 1780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39536587883987,
+ 38.28233266151009
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1781",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1781 accessories"
+ }
+ },
+ "system": "drone system 1781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67497592246515,
+ 38.6118375024992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1782",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1782 accessories"
+ }
+ },
+ "system": "drone system 1782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49764341666261,
+ 38.22688391922893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1783",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1783 accessories"
+ }
+ },
+ "system": "drone system 1783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2541792924514,
+ 39.22670783816095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1784",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1784 accessories"
+ }
+ },
+ "system": "drone system 1784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91729874670249,
+ 38.86838222230854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1785",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1785 accessories"
+ }
+ },
+ "system": "drone system 1785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47958380434451,
+ 38.7404372298863
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1786",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1786 accessories"
+ }
+ },
+ "system": "drone system 1786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1049520030651,
+ 38.016172023429995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1787",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1787 accessories"
+ }
+ },
+ "system": "drone system 1787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47807367257289,
+ 38.86074788961369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1788",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1788 accessories"
+ }
+ },
+ "system": "drone system 1788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05670917765333,
+ 39.42502545229078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1789",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1789 accessories"
+ }
+ },
+ "system": "drone system 1789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28990217358812,
+ 39.09166647506252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1790",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1790 accessories"
+ }
+ },
+ "system": "drone system 1790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13291500533036,
+ 39.285606097782185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1791",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1791 accessories"
+ }
+ },
+ "system": "drone system 1791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46368088566028,
+ 38.88536378755641
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1792",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1792 accessories"
+ }
+ },
+ "system": "drone system 1792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5504953297922,
+ 39.25894382269805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1793",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1793 accessories"
+ }
+ },
+ "system": "drone system 1793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56662785736894,
+ 39.09932900199751
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1794",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1794 accessories"
+ }
+ },
+ "system": "drone system 1794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07525301456437,
+ 38.52129376794186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1795",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1795 accessories"
+ }
+ },
+ "system": "drone system 1795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68312324924108,
+ 38.694687931929124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1796",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1796 accessories"
+ }
+ },
+ "system": "drone system 1796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42534975158671,
+ 38.3416511865776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1797",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1797 accessories"
+ }
+ },
+ "system": "drone system 1797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53720660576798,
+ 38.819416171064255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1798",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1798 accessories"
+ }
+ },
+ "system": "drone system 1798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.448954295477,
+ 38.288767249634446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1799",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1799 accessories"
+ }
+ },
+ "system": "drone system 1799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08240532087495,
+ 39.37622654058416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1800",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1800 accessories"
+ }
+ },
+ "system": "drone system 1800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88683075685725,
+ 39.2934470950687
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1801",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1801 accessories"
+ }
+ },
+ "system": "drone system 1801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10171625207988,
+ 39.71035267232625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1802",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1802 accessories"
+ }
+ },
+ "system": "drone system 1802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3023911117485,
+ 38.15351084003073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1803",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1803 accessories"
+ }
+ },
+ "system": "drone system 1803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4545139262383,
+ 39.44760654999327
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1804",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1804 accessories"
+ }
+ },
+ "system": "drone system 1804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24858416069328,
+ 38.26748802439677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1805",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1805 accessories"
+ }
+ },
+ "system": "drone system 1805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26068352036037,
+ 38.569102446063894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1806",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1806 accessories"
+ }
+ },
+ "system": "drone system 1806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03499416291237,
+ 39.43603913757839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1807",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1807 accessories"
+ }
+ },
+ "system": "drone system 1807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44232573570898,
+ 38.658243163931616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1808",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1808 accessories"
+ }
+ },
+ "system": "drone system 1808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38785264543586,
+ 38.79253508670188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1809",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1809 accessories"
+ }
+ },
+ "system": "drone system 1809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98310261639074,
+ 38.95656066263291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1810",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1810 accessories"
+ }
+ },
+ "system": "drone system 1810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86233256963808,
+ 38.7322961245442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1811",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1811 accessories"
+ }
+ },
+ "system": "drone system 1811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72904494349964,
+ 39.07177007296777
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1812",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1812 accessories"
+ }
+ },
+ "system": "drone system 1812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08044444770496,
+ 39.70512191386518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1813",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1813 accessories"
+ }
+ },
+ "system": "drone system 1813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37001877751135,
+ 39.586327388684026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1814",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1814 accessories"
+ }
+ },
+ "system": "drone system 1814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83674246373496,
+ 38.0938187926854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1815",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1815 accessories"
+ }
+ },
+ "system": "drone system 1815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71687239548451,
+ 39.6601606182269
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1816",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1816 accessories"
+ }
+ },
+ "system": "drone system 1816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23996343742199,
+ 39.23076964563951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1817",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1817 accessories"
+ }
+ },
+ "system": "drone system 1817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59199680649903,
+ 39.276466926478896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1818",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1818 accessories"
+ }
+ },
+ "system": "drone system 1818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63075656612419,
+ 38.94554516477122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1819",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1819 accessories"
+ }
+ },
+ "system": "drone system 1819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30910441278608,
+ 38.97748014993898
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1820",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1820 accessories"
+ }
+ },
+ "system": "drone system 1820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78957878845665,
+ 39.029954620632786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1821",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1821 accessories"
+ }
+ },
+ "system": "drone system 1821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6780785449784,
+ 39.395478191717444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1822",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1822 accessories"
+ }
+ },
+ "system": "drone system 1822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40595295991739,
+ 38.98396942444925
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1823",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1823 accessories"
+ }
+ },
+ "system": "drone system 1823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58873829220458,
+ 39.082274466059026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1824",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1824 accessories"
+ }
+ },
+ "system": "drone system 1824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52484573280367,
+ 38.34856804445259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1825",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1825 accessories"
+ }
+ },
+ "system": "drone system 1825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33287780361272,
+ 39.188297711182436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1826",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1826 accessories"
+ }
+ },
+ "system": "drone system 1826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83509895193727,
+ 39.29781316241315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1827",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1827 accessories"
+ }
+ },
+ "system": "drone system 1827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45816368313784,
+ 39.356842603952074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1828",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1828 accessories"
+ }
+ },
+ "system": "drone system 1828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97871551353589,
+ 39.76893492774755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1829",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1829 accessories"
+ }
+ },
+ "system": "drone system 1829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97577169092784,
+ 39.67751587282048
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1830",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1830 accessories"
+ }
+ },
+ "system": "drone system 1830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78005970211268,
+ 38.14374831224799
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1831",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1831 accessories"
+ }
+ },
+ "system": "drone system 1831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5302419575828,
+ 38.19128743096995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1832",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1832 accessories"
+ }
+ },
+ "system": "drone system 1832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04808381823523,
+ 39.77211640482911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1833",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1833 accessories"
+ }
+ },
+ "system": "drone system 1833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61822850442329,
+ 38.91239532430726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1834",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1834 accessories"
+ }
+ },
+ "system": "drone system 1834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20226870881021,
+ 39.465421529039475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1835",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1835 accessories"
+ }
+ },
+ "system": "drone system 1835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68117489224953,
+ 39.0180478217381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1836",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1836 accessories"
+ }
+ },
+ "system": "drone system 1836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74773051751971,
+ 38.625911672718985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1837",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1837 accessories"
+ }
+ },
+ "system": "drone system 1837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67904684646047,
+ 39.34161285584978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1838",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1838 accessories"
+ }
+ },
+ "system": "drone system 1838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3728480379483,
+ 39.05539455638454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1839",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1839 accessories"
+ }
+ },
+ "system": "drone system 1839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85727706420104,
+ 38.72919407347891
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1840",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1840 accessories"
+ }
+ },
+ "system": "drone system 1840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61314262534934,
+ 38.659406186360854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1841",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1841 accessories"
+ }
+ },
+ "system": "drone system 1841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19665468051817,
+ 39.022581500408464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1842",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1842 accessories"
+ }
+ },
+ "system": "drone system 1842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29006108966409,
+ 38.96099807304678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1843",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1843 accessories"
+ }
+ },
+ "system": "drone system 1843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6173249536163,
+ 39.18400857358766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1844",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1844 accessories"
+ }
+ },
+ "system": "drone system 1844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15600316091658,
+ 39.43579979369024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1845",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1845 accessories"
+ }
+ },
+ "system": "drone system 1845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60174281058917,
+ 38.8377729187577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1846",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1846 accessories"
+ }
+ },
+ "system": "drone system 1846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30772500758583,
+ 39.37317549668643
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1847",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1847 accessories"
+ }
+ },
+ "system": "drone system 1847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70118886248426,
+ 38.303616157364125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1848",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1848 accessories"
+ }
+ },
+ "system": "drone system 1848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71501330963763,
+ 39.069917121197584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1849",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1849 accessories"
+ }
+ },
+ "system": "drone system 1849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71406475083899,
+ 38.52091742363298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1850",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1850 accessories"
+ }
+ },
+ "system": "drone system 1850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14377351219049,
+ 39.57384102988115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1851",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1851 accessories"
+ }
+ },
+ "system": "drone system 1851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01292257107552,
+ 39.63625375730459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1852",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1852 accessories"
+ }
+ },
+ "system": "drone system 1852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11777870439641,
+ 38.06471325487003
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1853",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1853 accessories"
+ }
+ },
+ "system": "drone system 1853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3991876368943,
+ 38.486570076891084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1854",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1854 accessories"
+ }
+ },
+ "system": "drone system 1854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66413697246384,
+ 38.369886408069235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1855",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1855 accessories"
+ }
+ },
+ "system": "drone system 1855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36528997534685,
+ 38.89781817042124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1856",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1856 accessories"
+ }
+ },
+ "system": "drone system 1856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2361319302746,
+ 39.11366630511876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1857",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1857 accessories"
+ }
+ },
+ "system": "drone system 1857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80382480157006,
+ 38.91892692604764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1858",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1858 accessories"
+ }
+ },
+ "system": "drone system 1858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49237040542333,
+ 38.845179316786066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1859",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1859 accessories"
+ }
+ },
+ "system": "drone system 1859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15447283233087,
+ 39.25469304786674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1860",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1860 accessories"
+ }
+ },
+ "system": "drone system 1860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46985895238714,
+ 39.506334575153446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1861",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1861 accessories"
+ }
+ },
+ "system": "drone system 1861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58909021107036,
+ 38.871685926948395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1862",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1862 accessories"
+ }
+ },
+ "system": "drone system 1862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03907444329833,
+ 38.74758968781078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1863",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1863 accessories"
+ }
+ },
+ "system": "drone system 1863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68168686364059,
+ 38.536150390713516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1864",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1864 accessories"
+ }
+ },
+ "system": "drone system 1864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17007073058141,
+ 39.60867722455539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1865",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1865 accessories"
+ }
+ },
+ "system": "drone system 1865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67120113853396,
+ 39.284362364121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1866",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1866 accessories"
+ }
+ },
+ "system": "drone system 1866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84091980619687,
+ 38.913383810993146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1867",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1867 accessories"
+ }
+ },
+ "system": "drone system 1867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87206094108302,
+ 38.509845954142854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1868",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1868 accessories"
+ }
+ },
+ "system": "drone system 1868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12141842315383,
+ 39.36566002584823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1869",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1869 accessories"
+ }
+ },
+ "system": "drone system 1869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56918146951791,
+ 38.26793799027409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1870",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1870 accessories"
+ }
+ },
+ "system": "drone system 1870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54127892495906,
+ 38.735361295472316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1871",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1871 accessories"
+ }
+ },
+ "system": "drone system 1871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28292593544968,
+ 39.07718595828019
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1872",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1872 accessories"
+ }
+ },
+ "system": "drone system 1872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57530689822372,
+ 39.42800783662126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1873",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1873 accessories"
+ }
+ },
+ "system": "drone system 1873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18612802159836,
+ 38.652788321056235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1874",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1874 accessories"
+ }
+ },
+ "system": "drone system 1874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44595772555707,
+ 38.81633224547393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1875",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1875 accessories"
+ }
+ },
+ "system": "drone system 1875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47327701319217,
+ 39.66264054603453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1876",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1876 accessories"
+ }
+ },
+ "system": "drone system 1876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28385136672685,
+ 39.06043694186835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1877",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1877 accessories"
+ }
+ },
+ "system": "drone system 1877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62806185622179,
+ 38.249993550928195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1878",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1878 accessories"
+ }
+ },
+ "system": "drone system 1878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07331174456488,
+ 39.3142682466369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1879",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1879 accessories"
+ }
+ },
+ "system": "drone system 1879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49870781036905,
+ 39.16185542707421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1880",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1880 accessories"
+ }
+ },
+ "system": "drone system 1880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63068083184302,
+ 39.08157087215438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1881 accessories"
+ }
+ },
+ "system": "drone system 1881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15860032392096,
+ 38.16400426448567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1882",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1882 accessories"
+ }
+ },
+ "system": "drone system 1882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22254110605628,
+ 38.7588944332659
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1883",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1883 accessories"
+ }
+ },
+ "system": "drone system 1883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58887229095626,
+ 38.303749045963954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1884",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1884 accessories"
+ }
+ },
+ "system": "drone system 1884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30912664239328,
+ 38.8523620060333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1885",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1885 accessories"
+ }
+ },
+ "system": "drone system 1885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08536407281812,
+ 39.202160971990814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1886",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1886 accessories"
+ }
+ },
+ "system": "drone system 1886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13936401914286,
+ 39.65777284038778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1887",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1887 accessories"
+ }
+ },
+ "system": "drone system 1887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14261400933603,
+ 38.587530348680104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1888",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1888 accessories"
+ }
+ },
+ "system": "drone system 1888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60639093826167,
+ 39.20105914231343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1889",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1889 accessories"
+ }
+ },
+ "system": "drone system 1889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42634882089482,
+ 38.887641542304806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1890",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1890 accessories"
+ }
+ },
+ "system": "drone system 1890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30299108426543,
+ 39.6569468971744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1891",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1891 accessories"
+ }
+ },
+ "system": "drone system 1891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64616550891111,
+ 38.90469453178317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1892",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1892 accessories"
+ }
+ },
+ "system": "drone system 1892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33140347827108,
+ 38.54705833532832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1893",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1893 accessories"
+ }
+ },
+ "system": "drone system 1893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4463680492929,
+ 39.53602590714296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1894",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1894 accessories"
+ }
+ },
+ "system": "drone system 1894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44155241084948,
+ 38.29422349004509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1895",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1895 accessories"
+ }
+ },
+ "system": "drone system 1895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54862626563579,
+ 39.41729341597375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1896",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1896 accessories"
+ }
+ },
+ "system": "drone system 1896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0072417079877,
+ 38.20271227313229
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1897",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1897 accessories"
+ }
+ },
+ "system": "drone system 1897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44210614022636,
+ 38.523569217937435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1898",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1898 accessories"
+ }
+ },
+ "system": "drone system 1898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01082879153678,
+ 39.29519452300776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1899",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1899 accessories"
+ }
+ },
+ "system": "drone system 1899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08367602507865,
+ 38.75074768034494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1900",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1900 accessories"
+ }
+ },
+ "system": "drone system 1900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44731282533222,
+ 39.20517494738259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1901",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1901 accessories"
+ }
+ },
+ "system": "drone system 1901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3684838615579,
+ 39.048243590039064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1902",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1902 accessories"
+ }
+ },
+ "system": "drone system 1902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86639633949525,
+ 39.410082352387015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1903",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1903 accessories"
+ }
+ },
+ "system": "drone system 1903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72729740470162,
+ 39.07591218814783
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1904",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1904 accessories"
+ }
+ },
+ "system": "drone system 1904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62406798901574,
+ 39.028603009598676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1905",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1905 accessories"
+ }
+ },
+ "system": "drone system 1905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95291074063377,
+ 38.12836569412462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1906",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1906 accessories"
+ }
+ },
+ "system": "drone system 1906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51300264419827,
+ 39.068674970567145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1907",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1907 accessories"
+ }
+ },
+ "system": "drone system 1907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29772813803513,
+ 38.91416551979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1908",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1908 accessories"
+ }
+ },
+ "system": "drone system 1908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91800931713153,
+ 38.93816876052434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1909",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1909 accessories"
+ }
+ },
+ "system": "drone system 1909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90030071287704,
+ 38.87877038456689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1910",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1910 accessories"
+ }
+ },
+ "system": "drone system 1910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87650284880795,
+ 39.10093323021927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1911",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1911 accessories"
+ }
+ },
+ "system": "drone system 1911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53531184379858,
+ 38.71956921783578
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1912",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1912 accessories"
+ }
+ },
+ "system": "drone system 1912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57779087320783,
+ 38.76200289962759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1913",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1913 accessories"
+ }
+ },
+ "system": "drone system 1913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79352667638813,
+ 39.00476412515612
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1914",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1914 accessories"
+ }
+ },
+ "system": "drone system 1914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89259495917948,
+ 38.557916685670186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1915",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1915 accessories"
+ }
+ },
+ "system": "drone system 1915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65648935495902,
+ 39.148662454606786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1916",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1916 accessories"
+ }
+ },
+ "system": "drone system 1916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86714520057491,
+ 38.50307013628547
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1917",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1917 accessories"
+ }
+ },
+ "system": "drone system 1917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58989055027125,
+ 38.83763634809974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1918",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1918 accessories"
+ }
+ },
+ "system": "drone system 1918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11901091340812,
+ 38.696110991817896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1919",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1919 accessories"
+ }
+ },
+ "system": "drone system 1919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98637567913948,
+ 38.71180615861035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1920",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1920 accessories"
+ }
+ },
+ "system": "drone system 1920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55781372332098,
+ 38.81499114398484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1921",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1921 accessories"
+ }
+ },
+ "system": "drone system 1921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16597903447362,
+ 38.813261684868685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1922",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1922 accessories"
+ }
+ },
+ "system": "drone system 1922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29626864027875,
+ 38.20485682952795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1923",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1923 accessories"
+ }
+ },
+ "system": "drone system 1923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53097975572972,
+ 38.27992986020804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1924",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1924 accessories"
+ }
+ },
+ "system": "drone system 1924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49639665822087,
+ 39.032175407653085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1925",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1925 accessories"
+ }
+ },
+ "system": "drone system 1925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91395890558712,
+ 38.789604704942214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1926",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1926 accessories"
+ }
+ },
+ "system": "drone system 1926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95796294836595,
+ 38.530600471995086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1927",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1927 accessories"
+ }
+ },
+ "system": "drone system 1927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56371587412276,
+ 38.41528057621186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1928",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1928 accessories"
+ }
+ },
+ "system": "drone system 1928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76808973990798,
+ 39.33008632198457
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1929",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1929 accessories"
+ }
+ },
+ "system": "drone system 1929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55910939389169,
+ 39.34820131099432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1930",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1930 accessories"
+ }
+ },
+ "system": "drone system 1930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5112034067812,
+ 39.44737678175422
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1931",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1931 accessories"
+ }
+ },
+ "system": "drone system 1931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29225479184579,
+ 38.713174539437766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1932",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1932 accessories"
+ }
+ },
+ "system": "drone system 1932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24870035848869,
+ 38.2875542588845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1933",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1933 accessories"
+ }
+ },
+ "system": "drone system 1933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76887615986018,
+ 38.83259259122008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1934",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1934 accessories"
+ }
+ },
+ "system": "drone system 1934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02671919590006,
+ 39.22084478132651
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1935",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1935 accessories"
+ }
+ },
+ "system": "drone system 1935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54511729684165,
+ 39.15596502775093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1936",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1936 accessories"
+ }
+ },
+ "system": "drone system 1936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2368335085754,
+ 39.710440358699145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1937",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1937 accessories"
+ }
+ },
+ "system": "drone system 1937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5964898611141,
+ 38.55361561116166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1938",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1938 accessories"
+ }
+ },
+ "system": "drone system 1938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44216508336598,
+ 39.10158595131599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1939",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1939 accessories"
+ }
+ },
+ "system": "drone system 1939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81411637691389,
+ 38.98103847154485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1940",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1940 accessories"
+ }
+ },
+ "system": "drone system 1940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81290729144912,
+ 38.634397017180376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1941",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1941 accessories"
+ }
+ },
+ "system": "drone system 1941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92032063307533,
+ 39.00299037914739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1942",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1942 accessories"
+ }
+ },
+ "system": "drone system 1942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45945782304358,
+ 38.56500494945262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1943",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1943 accessories"
+ }
+ },
+ "system": "drone system 1943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56140769258151,
+ 39.419809388838345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1944",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1944 accessories"
+ }
+ },
+ "system": "drone system 1944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4314653413091,
+ 38.10987398865446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1945",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1945 accessories"
+ }
+ },
+ "system": "drone system 1945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96179047376788,
+ 38.291221638881346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1946",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1946 accessories"
+ }
+ },
+ "system": "drone system 1946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44591671661848,
+ 38.49750569306817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1947",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1947 accessories"
+ }
+ },
+ "system": "drone system 1947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93731944074707,
+ 39.49381779025902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1948",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1948 accessories"
+ }
+ },
+ "system": "drone system 1948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78700140753304,
+ 38.0927330824247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1949",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1949 accessories"
+ }
+ },
+ "system": "drone system 1949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49373149662885,
+ 38.596353807530335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1950",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1950 accessories"
+ }
+ },
+ "system": "drone system 1950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6869647822957,
+ 38.603936260687334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1951",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1951 accessories"
+ }
+ },
+ "system": "drone system 1951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3588210237498,
+ 38.85379231300825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1952",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1952 accessories"
+ }
+ },
+ "system": "drone system 1952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70783151881646,
+ 39.16385491558933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1953",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1953 accessories"
+ }
+ },
+ "system": "drone system 1953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53526217178322,
+ 39.526814835854545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1954",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1954 accessories"
+ }
+ },
+ "system": "drone system 1954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29687323713917,
+ 39.07198439957345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1955",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1955 accessories"
+ }
+ },
+ "system": "drone system 1955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30034274974429,
+ 38.954156861335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1956",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1956 accessories"
+ }
+ },
+ "system": "drone system 1956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6646692633677,
+ 39.64435582660073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1957",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1957 accessories"
+ }
+ },
+ "system": "drone system 1957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51041835225645,
+ 38.36884803654884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1958",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1958 accessories"
+ }
+ },
+ "system": "drone system 1958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81999552625442,
+ 38.624263281421726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1959",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1959 accessories"
+ }
+ },
+ "system": "drone system 1959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7206494501845,
+ 38.18180492108281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1960",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1960 accessories"
+ }
+ },
+ "system": "drone system 1960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23212112150793,
+ 39.1723604738294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1961",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1961 accessories"
+ }
+ },
+ "system": "drone system 1961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36374349678609,
+ 39.29061070029877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1962",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1962 accessories"
+ }
+ },
+ "system": "drone system 1962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68053401060247,
+ 38.38347810098145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1963",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1963 accessories"
+ }
+ },
+ "system": "drone system 1963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3458678017071,
+ 38.55567234994086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1964",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1964 accessories"
+ }
+ },
+ "system": "drone system 1964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27012232484762,
+ 39.6905977697103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1965",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1965 accessories"
+ }
+ },
+ "system": "drone system 1965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39448928140068,
+ 38.519070147438406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1966",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1966 accessories"
+ }
+ },
+ "system": "drone system 1966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2835293331424,
+ 38.93964403065185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1967",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1967 accessories"
+ }
+ },
+ "system": "drone system 1967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93546398504719,
+ 39.13183334668597
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1968",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1968 accessories"
+ }
+ },
+ "system": "drone system 1968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7110839619598,
+ 38.85712992331871
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1969",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1969 accessories"
+ }
+ },
+ "system": "drone system 1969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89937461014537,
+ 38.78479290043283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1970",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1970 accessories"
+ }
+ },
+ "system": "drone system 1970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68727805885165,
+ 39.37132872054907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1971",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1971 accessories"
+ }
+ },
+ "system": "drone system 1971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60755157746237,
+ 39.19138322539693
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1972",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1972 accessories"
+ }
+ },
+ "system": "drone system 1972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75697912221091,
+ 39.169030492716175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1973",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1973 accessories"
+ }
+ },
+ "system": "drone system 1973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59110678006574,
+ 38.75677712962041
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1974",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1974 accessories"
+ }
+ },
+ "system": "drone system 1974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60371570943178,
+ 38.16245327534679
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1975",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1975 accessories"
+ }
+ },
+ "system": "drone system 1975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08551719770264,
+ 38.76224791289992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1976",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1976 accessories"
+ }
+ },
+ "system": "drone system 1976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82197895412772,
+ 38.484891619177596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1977",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1977 accessories"
+ }
+ },
+ "system": "drone system 1977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45516918155558,
+ 39.03367726702617
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1978",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1978 accessories"
+ }
+ },
+ "system": "drone system 1978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5328766116984,
+ 39.01141779196263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1979",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1979 accessories"
+ }
+ },
+ "system": "drone system 1979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80214753326136,
+ 38.60015598997676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1980",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1980 accessories"
+ }
+ },
+ "system": "drone system 1980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51059634729872,
+ 38.51771934069059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1981",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1981 accessories"
+ }
+ },
+ "system": "drone system 1981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74890068650687,
+ 39.213762281385456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1982",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1982 accessories"
+ }
+ },
+ "system": "drone system 1982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5963968133546,
+ 38.986741532895046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1983",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1983 accessories"
+ }
+ },
+ "system": "drone system 1983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67590183394069,
+ 39.034744680114606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1984",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1984 accessories"
+ }
+ },
+ "system": "drone system 1984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23495614987594,
+ 39.03071544963262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1985",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1985 accessories"
+ }
+ },
+ "system": "drone system 1985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78108474076468,
+ 38.744148036868744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1986",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1986 accessories"
+ }
+ },
+ "system": "drone system 1986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20048043780321,
+ 39.03619941378061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1987",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1987 accessories"
+ }
+ },
+ "system": "drone system 1987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00256106188229,
+ 38.06129205947214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1988",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1988 accessories"
+ }
+ },
+ "system": "drone system 1988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.224958342633,
+ 39.57303030171379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1989",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1989 accessories"
+ }
+ },
+ "system": "drone system 1989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79616425649257,
+ 38.431220595709945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1990",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1990 accessories"
+ }
+ },
+ "system": "drone system 1990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02634559584008,
+ 38.3767073992801
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1991",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1991 accessories"
+ }
+ },
+ "system": "drone system 1991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72515284412405,
+ 39.10576487644449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1992",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1992 accessories"
+ }
+ },
+ "system": "drone system 1992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7612008825309,
+ 38.95265900332654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1993",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1993 accessories"
+ }
+ },
+ "system": "drone system 1993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16254800644253,
+ 38.21553712735688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1994",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1994 accessories"
+ }
+ },
+ "system": "drone system 1994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96584085150107,
+ 39.63253697082724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1995",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1995 accessories"
+ }
+ },
+ "system": "drone system 1995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18628064596743,
+ 38.59922337065208
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1996",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1996 accessories"
+ }
+ },
+ "system": "drone system 1996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60362137212684,
+ 38.26685886435179
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1997",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1997 accessories"
+ }
+ },
+ "system": "drone system 1997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16323316879127,
+ 39.41386774995128
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1998",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1998 accessories"
+ }
+ },
+ "system": "drone system 1998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6509134318706,
+ 38.40051341868057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone1999",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone1999 accessories"
+ }
+ },
+ "system": "drone system 1999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48878014389335,
+ 38.89716969937455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2000",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2000 accessories"
+ }
+ },
+ "system": "drone system 2000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7546538899321,
+ 38.71953355005948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2001",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2001 accessories"
+ }
+ },
+ "system": "drone system 2001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4920957863157,
+ 39.190130824934634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2002",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2002 accessories"
+ }
+ },
+ "system": "drone system 2002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1934648954407,
+ 39.216246053960106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2003",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2003 accessories"
+ }
+ },
+ "system": "drone system 2003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46028708678506,
+ 39.611540499654794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2004",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2004 accessories"
+ }
+ },
+ "system": "drone system 2004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56711346961309,
+ 38.7144048820465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2005",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2005 accessories"
+ }
+ },
+ "system": "drone system 2005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55943275247513,
+ 38.58969901113215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2006",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2006 accessories"
+ }
+ },
+ "system": "drone system 2006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88009125076553,
+ 38.217122076110044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2007",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2007 accessories"
+ }
+ },
+ "system": "drone system 2007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67544334992385,
+ 39.71481254606894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2008",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2008 accessories"
+ }
+ },
+ "system": "drone system 2008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65607073936111,
+ 38.2304876843551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2009",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2009 accessories"
+ }
+ },
+ "system": "drone system 2009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09340651269822,
+ 39.549874074651036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2010",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2010 accessories"
+ }
+ },
+ "system": "drone system 2010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53900835191696,
+ 39.36117099004629
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2011",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2011 accessories"
+ }
+ },
+ "system": "drone system 2011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24156602438428,
+ 38.088116329908615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2012",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2012 accessories"
+ }
+ },
+ "system": "drone system 2012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73390917561323,
+ 38.40176713798085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2013",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2013 accessories"
+ }
+ },
+ "system": "drone system 2013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84373944603908,
+ 38.85553507589582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2014",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2014 accessories"
+ }
+ },
+ "system": "drone system 2014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71087928453802,
+ 38.95074487338505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2015",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2015 accessories"
+ }
+ },
+ "system": "drone system 2015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90638973679518,
+ 38.793069538105826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2016",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2016 accessories"
+ }
+ },
+ "system": "drone system 2016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27817384499568,
+ 38.98605274544697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2017",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2017 accessories"
+ }
+ },
+ "system": "drone system 2017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52781119476887,
+ 39.65052896859052
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2018",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2018 accessories"
+ }
+ },
+ "system": "drone system 2018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75422730770752,
+ 38.793676846169724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2019",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2019 accessories"
+ }
+ },
+ "system": "drone system 2019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53817177511132,
+ 38.78266126188843
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2020",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2020 accessories"
+ }
+ },
+ "system": "drone system 2020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69965733938659,
+ 39.18791788627824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2021",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2021 accessories"
+ }
+ },
+ "system": "drone system 2021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67435586899448,
+ 39.315589911095934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2022",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2022 accessories"
+ }
+ },
+ "system": "drone system 2022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90326106528768,
+ 38.81008471489928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2023",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2023 accessories"
+ }
+ },
+ "system": "drone system 2023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65207118028573,
+ 38.824302629059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2024",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2024 accessories"
+ }
+ },
+ "system": "drone system 2024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39269290759603,
+ 38.617676801618515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2025",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2025 accessories"
+ }
+ },
+ "system": "drone system 2025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42957495197149,
+ 39.42236699729794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2026",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2026 accessories"
+ }
+ },
+ "system": "drone system 2026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34178368871731,
+ 38.206408781706564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2027",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2027 accessories"
+ }
+ },
+ "system": "drone system 2027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64060417289251,
+ 38.959462914203314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2028",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2028 accessories"
+ }
+ },
+ "system": "drone system 2028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85170968329524,
+ 38.38675096424614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2029",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2029 accessories"
+ }
+ },
+ "system": "drone system 2029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56977479235358,
+ 38.95625203150511
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2030",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2030 accessories"
+ }
+ },
+ "system": "drone system 2030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41711842525507,
+ 39.69706743529943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2031",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2031 accessories"
+ }
+ },
+ "system": "drone system 2031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75333733505973,
+ 38.90517822645163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2032",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2032 accessories"
+ }
+ },
+ "system": "drone system 2032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98779299495277,
+ 39.73323763972318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2033",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2033 accessories"
+ }
+ },
+ "system": "drone system 2033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96137136938904,
+ 39.44018852892236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2034",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2034 accessories"
+ }
+ },
+ "system": "drone system 2034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22253234917827,
+ 38.9390075616671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2035",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2035 accessories"
+ }
+ },
+ "system": "drone system 2035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72124573848701,
+ 39.68669394706692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2036",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2036 accessories"
+ }
+ },
+ "system": "drone system 2036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14692473874311,
+ 38.97553875616014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2037",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2037 accessories"
+ }
+ },
+ "system": "drone system 2037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65719846223934,
+ 38.53073012526613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2038",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2038 accessories"
+ }
+ },
+ "system": "drone system 2038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37086633968582,
+ 38.91917032011725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2039",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2039 accessories"
+ }
+ },
+ "system": "drone system 2039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89649371902762,
+ 39.085283432240885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2040",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2040 accessories"
+ }
+ },
+ "system": "drone system 2040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19716185463791,
+ 39.328611308748904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2041",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2041 accessories"
+ }
+ },
+ "system": "drone system 2041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2892513531668,
+ 38.20489351944645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2042",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2042 accessories"
+ }
+ },
+ "system": "drone system 2042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90114216753506,
+ 39.09204074615949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2043",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2043 accessories"
+ }
+ },
+ "system": "drone system 2043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64656028416873,
+ 38.22002044023301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2044",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2044 accessories"
+ }
+ },
+ "system": "drone system 2044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86173207862807,
+ 39.048841920664906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2045",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2045 accessories"
+ }
+ },
+ "system": "drone system 2045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41865478323763,
+ 38.65927260503305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2046",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2046 accessories"
+ }
+ },
+ "system": "drone system 2046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60622518183685,
+ 39.21759200230897
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2047",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2047 accessories"
+ }
+ },
+ "system": "drone system 2047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28795140300728,
+ 39.17317761644028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2048",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2048 accessories"
+ }
+ },
+ "system": "drone system 2048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9824685552809,
+ 38.32584703088174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2049",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2049 accessories"
+ }
+ },
+ "system": "drone system 2049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47724086988448,
+ 39.10093918352316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2050",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2050 accessories"
+ }
+ },
+ "system": "drone system 2050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49276757779184,
+ 39.159661250040116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2051",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2051 accessories"
+ }
+ },
+ "system": "drone system 2051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41322535650984,
+ 39.25855131416701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2052",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2052 accessories"
+ }
+ },
+ "system": "drone system 2052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67449843563554,
+ 39.40823250690288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2053",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2053 accessories"
+ }
+ },
+ "system": "drone system 2053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53832869089216,
+ 39.08532283692257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2054",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2054 accessories"
+ }
+ },
+ "system": "drone system 2054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06630116391491,
+ 38.39585106417156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2055",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2055 accessories"
+ }
+ },
+ "system": "drone system 2055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73919925043579,
+ 39.285252778934066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2056",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2056 accessories"
+ }
+ },
+ "system": "drone system 2056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82410268996567,
+ 39.32198773728151
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2057",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2057 accessories"
+ }
+ },
+ "system": "drone system 2057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48017045666695,
+ 38.69344645255031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2058",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2058 accessories"
+ }
+ },
+ "system": "drone system 2058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80780146185825,
+ 39.41910267703209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2059",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2059 accessories"
+ }
+ },
+ "system": "drone system 2059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94904573985797,
+ 38.99320917894279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2060",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2060 accessories"
+ }
+ },
+ "system": "drone system 2060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2283050678222,
+ 38.54289238624221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2061",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2061 accessories"
+ }
+ },
+ "system": "drone system 2061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62298512703266,
+ 38.41503738147558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2062",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2062 accessories"
+ }
+ },
+ "system": "drone system 2062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4376442813377,
+ 38.619205944087376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2063",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2063 accessories"
+ }
+ },
+ "system": "drone system 2063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08902021306177,
+ 38.480911969371995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2064",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2064 accessories"
+ }
+ },
+ "system": "drone system 2064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73607753203069,
+ 38.5323826414433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2065",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2065 accessories"
+ }
+ },
+ "system": "drone system 2065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82111777668882,
+ 38.249149314547466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2066",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2066 accessories"
+ }
+ },
+ "system": "drone system 2066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24530515570923,
+ 38.03814894294742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2067",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2067 accessories"
+ }
+ },
+ "system": "drone system 2067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10356104467846,
+ 38.71696918147299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2068",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2068 accessories"
+ }
+ },
+ "system": "drone system 2068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41434002644347,
+ 39.298756309950875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2069",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2069 accessories"
+ }
+ },
+ "system": "drone system 2069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39490989898964,
+ 39.142181746068715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2070",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2070 accessories"
+ }
+ },
+ "system": "drone system 2070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33045182131211,
+ 39.37243353889221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2071",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2071 accessories"
+ }
+ },
+ "system": "drone system 2071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41401468004439,
+ 38.614378837241944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2072",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2072 accessories"
+ }
+ },
+ "system": "drone system 2072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99210290238022,
+ 38.20896970663144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2073",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2073 accessories"
+ }
+ },
+ "system": "drone system 2073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38242183427124,
+ 38.99635554730129
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2074",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2074 accessories"
+ }
+ },
+ "system": "drone system 2074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84340247779365,
+ 38.694692685102346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2075",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2075 accessories"
+ }
+ },
+ "system": "drone system 2075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69061886680953,
+ 39.30175183371467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2076",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2076 accessories"
+ }
+ },
+ "system": "drone system 2076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77510414658971,
+ 39.26359185419963
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2077",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2077 accessories"
+ }
+ },
+ "system": "drone system 2077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32783552582914,
+ 39.683564197878326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2078",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2078 accessories"
+ }
+ },
+ "system": "drone system 2078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64355310741577,
+ 38.55087690335739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2079",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2079 accessories"
+ }
+ },
+ "system": "drone system 2079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58145047264051,
+ 38.56113800234778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2080",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2080 accessories"
+ }
+ },
+ "system": "drone system 2080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42291514700904,
+ 39.183141369654116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2081",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2081 accessories"
+ }
+ },
+ "system": "drone system 2081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64289814639007,
+ 39.68316542979891
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2082",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2082 accessories"
+ }
+ },
+ "system": "drone system 2082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33619139663239,
+ 39.710748614372505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2083",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2083 accessories"
+ }
+ },
+ "system": "drone system 2083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61525152544577,
+ 38.9638549102454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2084",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2084 accessories"
+ }
+ },
+ "system": "drone system 2084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24032674890677,
+ 38.038749425520926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2085",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2085 accessories"
+ }
+ },
+ "system": "drone system 2085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72205068717011,
+ 39.14490456559185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2086",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2086 accessories"
+ }
+ },
+ "system": "drone system 2086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85205266287281,
+ 39.05785650532345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2087",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2087 accessories"
+ }
+ },
+ "system": "drone system 2087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13294961247028,
+ 39.28223490378731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2088",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2088 accessories"
+ }
+ },
+ "system": "drone system 2088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65127938008551,
+ 39.428863642033704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2089",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2089 accessories"
+ }
+ },
+ "system": "drone system 2089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58801202178392,
+ 39.67346512215032
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2090",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2090 accessories"
+ }
+ },
+ "system": "drone system 2090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37185109247578,
+ 38.855662930734965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2091",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2091 accessories"
+ }
+ },
+ "system": "drone system 2091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69846257762558,
+ 39.59093295079447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2092",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2092 accessories"
+ }
+ },
+ "system": "drone system 2092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38912951692522,
+ 39.59644136413644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2093",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2093 accessories"
+ }
+ },
+ "system": "drone system 2093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88747751325806,
+ 38.811508898259355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2094",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2094 accessories"
+ }
+ },
+ "system": "drone system 2094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6460007571659,
+ 38.46040335693805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2095",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2095 accessories"
+ }
+ },
+ "system": "drone system 2095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21937342406223,
+ 39.63426054091466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2096",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2096 accessories"
+ }
+ },
+ "system": "drone system 2096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3154808627477,
+ 39.743486174377175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2097",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2097 accessories"
+ }
+ },
+ "system": "drone system 2097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80606541951882,
+ 38.92130992240405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2098",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2098 accessories"
+ }
+ },
+ "system": "drone system 2098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76651584273742,
+ 38.70500852655278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2099",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2099 accessories"
+ }
+ },
+ "system": "drone system 2099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08765004358087,
+ 38.664470671908724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2100",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2100 accessories"
+ }
+ },
+ "system": "drone system 2100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61643930000288,
+ 38.523024952672024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2101",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2101 accessories"
+ }
+ },
+ "system": "drone system 2101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23524298546302,
+ 38.88702633383873
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2102",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2102 accessories"
+ }
+ },
+ "system": "drone system 2102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47612431102208,
+ 39.276074649261545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2103",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2103 accessories"
+ }
+ },
+ "system": "drone system 2103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56037228341404,
+ 39.62665285764048
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2104",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2104 accessories"
+ }
+ },
+ "system": "drone system 2104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43379224105134,
+ 38.73360615558418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2105",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2105 accessories"
+ }
+ },
+ "system": "drone system 2105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50227383282014,
+ 38.52406933855116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2106",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2106 accessories"
+ }
+ },
+ "system": "drone system 2106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59277130163548,
+ 39.3533604421741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2107",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2107 accessories"
+ }
+ },
+ "system": "drone system 2107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39896409716867,
+ 38.92169811403166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2108",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2108 accessories"
+ }
+ },
+ "system": "drone system 2108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79669215742891,
+ 38.83014250756713
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2109",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2109 accessories"
+ }
+ },
+ "system": "drone system 2109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91586047567468,
+ 38.87481095059271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2110",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2110 accessories"
+ }
+ },
+ "system": "drone system 2110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12521471664601,
+ 39.46093612767939
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2111",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2111 accessories"
+ }
+ },
+ "system": "drone system 2111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76350377193893,
+ 38.79299482107883
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2112",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2112 accessories"
+ }
+ },
+ "system": "drone system 2112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26988792909232,
+ 38.70404256434434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2113",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2113 accessories"
+ }
+ },
+ "system": "drone system 2113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86925949928307,
+ 39.104802920923895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2114",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2114 accessories"
+ }
+ },
+ "system": "drone system 2114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49786213265669,
+ 38.42050236531451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2115",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2115 accessories"
+ }
+ },
+ "system": "drone system 2115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14945221243332,
+ 38.43392675236158
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2116",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2116 accessories"
+ }
+ },
+ "system": "drone system 2116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26661266651656,
+ 39.02206523205171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2117",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2117 accessories"
+ }
+ },
+ "system": "drone system 2117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47856760188522,
+ 38.7239724890788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2118",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2118 accessories"
+ }
+ },
+ "system": "drone system 2118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33324814951051,
+ 38.52862447156454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2119",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2119 accessories"
+ }
+ },
+ "system": "drone system 2119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31415138561843,
+ 38.18155673819031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2120",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2120 accessories"
+ }
+ },
+ "system": "drone system 2120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65762012171194,
+ 38.40911683948701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2121",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2121 accessories"
+ }
+ },
+ "system": "drone system 2121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96322799896608,
+ 38.07123739962502
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2122",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2122 accessories"
+ }
+ },
+ "system": "drone system 2122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65844882178382,
+ 38.44152067597242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2123",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2123 accessories"
+ }
+ },
+ "system": "drone system 2123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83742930598166,
+ 38.71137406082428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2124",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2124 accessories"
+ }
+ },
+ "system": "drone system 2124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41827395118769,
+ 38.58316953061369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2125",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2125 accessories"
+ }
+ },
+ "system": "drone system 2125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61821299555021,
+ 38.8128120959733
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2126",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2126 accessories"
+ }
+ },
+ "system": "drone system 2126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56097606416495,
+ 38.55868237241765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2127",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2127 accessories"
+ }
+ },
+ "system": "drone system 2127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28364656412761,
+ 38.50221381598307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2128",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2128 accessories"
+ }
+ },
+ "system": "drone system 2128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51388735597193,
+ 38.94708343219393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2129",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2129 accessories"
+ }
+ },
+ "system": "drone system 2129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6568201795193,
+ 38.91370527609554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2130",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2130 accessories"
+ }
+ },
+ "system": "drone system 2130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87183087286598,
+ 39.05329300222473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2131",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2131 accessories"
+ }
+ },
+ "system": "drone system 2131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26755585884347,
+ 39.54285672879732
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2132",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2132 accessories"
+ }
+ },
+ "system": "drone system 2132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80374340176658,
+ 38.91900226819256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2133",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2133 accessories"
+ }
+ },
+ "system": "drone system 2133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7363561383395,
+ 39.17506026050044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2134",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2134 accessories"
+ }
+ },
+ "system": "drone system 2134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30261205890022,
+ 39.19566760244894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2135",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2135 accessories"
+ }
+ },
+ "system": "drone system 2135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62373274781159,
+ 39.620235505481496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2136",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2136 accessories"
+ }
+ },
+ "system": "drone system 2136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58212780616357,
+ 39.29634068821624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2137",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2137 accessories"
+ }
+ },
+ "system": "drone system 2137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44302298461625,
+ 38.7653802211805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2138",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2138 accessories"
+ }
+ },
+ "system": "drone system 2138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57240093308391,
+ 38.18901457944338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2139",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2139 accessories"
+ }
+ },
+ "system": "drone system 2139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20785774943538,
+ 38.60903946606757
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2140",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2140 accessories"
+ }
+ },
+ "system": "drone system 2140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75627147346322,
+ 38.65881997158948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2141",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2141 accessories"
+ }
+ },
+ "system": "drone system 2141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10861824670431,
+ 39.13327372568432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2142",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2142 accessories"
+ }
+ },
+ "system": "drone system 2142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41012409652457,
+ 38.95304232916665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2143",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2143 accessories"
+ }
+ },
+ "system": "drone system 2143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89855305667092,
+ 38.91521578218711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2144",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2144 accessories"
+ }
+ },
+ "system": "drone system 2144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42414199707991,
+ 39.63571899981552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2145",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2145 accessories"
+ }
+ },
+ "system": "drone system 2145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2600536973526,
+ 38.15307151729666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2146",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2146 accessories"
+ }
+ },
+ "system": "drone system 2146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64888032887923,
+ 38.19637735731737
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2147",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2147 accessories"
+ }
+ },
+ "system": "drone system 2147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44273931461096,
+ 38.77089920513559
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2148",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2148 accessories"
+ }
+ },
+ "system": "drone system 2148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66411799157636,
+ 38.53950825077086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2149",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2149 accessories"
+ }
+ },
+ "system": "drone system 2149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98070690380781,
+ 39.12091118275944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2150",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2150 accessories"
+ }
+ },
+ "system": "drone system 2150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10252086457987,
+ 38.73449930783375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2151",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2151 accessories"
+ }
+ },
+ "system": "drone system 2151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59772654809085,
+ 38.694679957471024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2152",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2152 accessories"
+ }
+ },
+ "system": "drone system 2152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66467196742401,
+ 38.733698194005406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2153",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2153 accessories"
+ }
+ },
+ "system": "drone system 2153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38798462161108,
+ 39.523821850348895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2154",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2154 accessories"
+ }
+ },
+ "system": "drone system 2154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59698727808605,
+ 38.651849090927584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2155",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2155 accessories"
+ }
+ },
+ "system": "drone system 2155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02821202685632,
+ 39.471506504171586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2156",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2156 accessories"
+ }
+ },
+ "system": "drone system 2156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99281249803411,
+ 38.763782635817016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2157",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2157 accessories"
+ }
+ },
+ "system": "drone system 2157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64337404633044,
+ 39.515639750541375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2158",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2158 accessories"
+ }
+ },
+ "system": "drone system 2158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06442736408964,
+ 39.1252393532281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2159",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2159 accessories"
+ }
+ },
+ "system": "drone system 2159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03260385723453,
+ 38.25319829152734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2160",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2160 accessories"
+ }
+ },
+ "system": "drone system 2160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61792098706009,
+ 38.33584373298613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2161",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2161 accessories"
+ }
+ },
+ "system": "drone system 2161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3262924504615,
+ 38.16175642837694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2162",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2162 accessories"
+ }
+ },
+ "system": "drone system 2162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48536746901381,
+ 39.532347121140326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2163",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2163 accessories"
+ }
+ },
+ "system": "drone system 2163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66604046908101,
+ 39.496616512150155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2164",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2164 accessories"
+ }
+ },
+ "system": "drone system 2164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69832495035953,
+ 39.258360066754484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2165",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2165 accessories"
+ }
+ },
+ "system": "drone system 2165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35769948554957,
+ 38.6401677218291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2166",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2166 accessories"
+ }
+ },
+ "system": "drone system 2166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99858394989548,
+ 38.90883800349828
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2167",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2167 accessories"
+ }
+ },
+ "system": "drone system 2167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4447727002194,
+ 38.58667335339625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2168",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2168 accessories"
+ }
+ },
+ "system": "drone system 2168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92321062572991,
+ 39.59304842171305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2169",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2169 accessories"
+ }
+ },
+ "system": "drone system 2169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56877927109721,
+ 38.202426769909685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2170",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2170 accessories"
+ }
+ },
+ "system": "drone system 2170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95379774322532,
+ 39.69642439212703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2171",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2171 accessories"
+ }
+ },
+ "system": "drone system 2171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91643159708056,
+ 38.3205693382938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2172",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2172 accessories"
+ }
+ },
+ "system": "drone system 2172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.93384566131851,
+ 38.926924590888476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2173",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2173 accessories"
+ }
+ },
+ "system": "drone system 2173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39093073818611,
+ 38.683753205566184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2174",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2174 accessories"
+ }
+ },
+ "system": "drone system 2174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6217890199071,
+ 38.41402183869013
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2175",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2175 accessories"
+ }
+ },
+ "system": "drone system 2175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73466184373781,
+ 38.492469614432224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2176",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2176 accessories"
+ }
+ },
+ "system": "drone system 2176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4010531941742,
+ 38.654782600964836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2177",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2177 accessories"
+ }
+ },
+ "system": "drone system 2177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78296097714464,
+ 39.53119732148555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2178",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2178 accessories"
+ }
+ },
+ "system": "drone system 2178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1919428251865,
+ 38.63316786608726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2179 accessories"
+ }
+ },
+ "system": "drone system 2179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50278384257714,
+ 38.68944525107445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2180",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2180 accessories"
+ }
+ },
+ "system": "drone system 2180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02350113053897,
+ 38.37715076018507
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2181",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2181 accessories"
+ }
+ },
+ "system": "drone system 2181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10496945327623,
+ 38.71364807254151
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2182",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2182 accessories"
+ }
+ },
+ "system": "drone system 2182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38227059871035,
+ 38.228477588128555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2183",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2183 accessories"
+ }
+ },
+ "system": "drone system 2183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63421927927206,
+ 38.12238494683532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2184",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2184 accessories"
+ }
+ },
+ "system": "drone system 2184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62524519236757,
+ 38.85916779209447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2185",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2185 accessories"
+ }
+ },
+ "system": "drone system 2185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35682510835046,
+ 39.61510202565127
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2186",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2186 accessories"
+ }
+ },
+ "system": "drone system 2186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80450177285006,
+ 39.69647177930469
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2187",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2187 accessories"
+ }
+ },
+ "system": "drone system 2187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84165374193225,
+ 38.06238668751559
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2188",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2188 accessories"
+ }
+ },
+ "system": "drone system 2188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64934092432765,
+ 39.33075865029408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2189",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2189 accessories"
+ }
+ },
+ "system": "drone system 2189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08047842891317,
+ 39.40692140127941
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2190 accessories"
+ }
+ },
+ "system": "drone system 2190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79067966699434,
+ 38.479166838126616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2191",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2191 accessories"
+ }
+ },
+ "system": "drone system 2191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34929709178658,
+ 39.59237369903879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2192",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2192 accessories"
+ }
+ },
+ "system": "drone system 2192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79432285746401,
+ 39.09423516415502
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2193",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2193 accessories"
+ }
+ },
+ "system": "drone system 2193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33496692235559,
+ 38.81565496849159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2194",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2194 accessories"
+ }
+ },
+ "system": "drone system 2194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80982175200026,
+ 38.53702177067118
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2195",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2195 accessories"
+ }
+ },
+ "system": "drone system 2195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87256149416571,
+ 39.10739766101186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2196",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2196 accessories"
+ }
+ },
+ "system": "drone system 2196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43491849496574,
+ 38.717394841548895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2197",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2197 accessories"
+ }
+ },
+ "system": "drone system 2197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32459317731742,
+ 39.73815077657207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2198",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2198 accessories"
+ }
+ },
+ "system": "drone system 2198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4229556654924,
+ 39.34241425127058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2199",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2199 accessories"
+ }
+ },
+ "system": "drone system 2199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77132793684662,
+ 38.57966888778567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2200",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2200 accessories"
+ }
+ },
+ "system": "drone system 2200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85856612941069,
+ 38.24700220163822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2201",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2201 accessories"
+ }
+ },
+ "system": "drone system 2201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32876889703259,
+ 39.089913290250934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2202",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2202 accessories"
+ }
+ },
+ "system": "drone system 2202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63233504631792,
+ 38.44868771898253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2203",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2203 accessories"
+ }
+ },
+ "system": "drone system 2203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22543334894081,
+ 38.55621171676349
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2204",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2204 accessories"
+ }
+ },
+ "system": "drone system 2204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88364364464519,
+ 38.95950178436833
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2205",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2205 accessories"
+ }
+ },
+ "system": "drone system 2205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12996895959859,
+ 39.558528520216406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2206",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2206 accessories"
+ }
+ },
+ "system": "drone system 2206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90030484895397,
+ 38.832545708925835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2207",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2207 accessories"
+ }
+ },
+ "system": "drone system 2207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78726179826762,
+ 38.30279982523027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2208",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2208 accessories"
+ }
+ },
+ "system": "drone system 2208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02741978177197,
+ 38.18541930812026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2209",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2209 accessories"
+ }
+ },
+ "system": "drone system 2209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42620848541485,
+ 38.65232335226076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2210",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2210 accessories"
+ }
+ },
+ "system": "drone system 2210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11373684877663,
+ 39.22709185494742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2211",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2211 accessories"
+ }
+ },
+ "system": "drone system 2211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53900505041733,
+ 39.45011149132552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2212",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2212 accessories"
+ }
+ },
+ "system": "drone system 2212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47674086124768,
+ 38.58317105051844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2213",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2213 accessories"
+ }
+ },
+ "system": "drone system 2213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.554238793223,
+ 38.638900497968926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2214",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2214 accessories"
+ }
+ },
+ "system": "drone system 2214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40846068610978,
+ 39.244073783085966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2215 accessories"
+ }
+ },
+ "system": "drone system 2215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74216390989868,
+ 39.313333449318755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2216",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2216 accessories"
+ }
+ },
+ "system": "drone system 2216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15465410389773,
+ 38.8527293115572
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2217",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2217 accessories"
+ }
+ },
+ "system": "drone system 2217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68102811116655,
+ 39.61118788818133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2218",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2218 accessories"
+ }
+ },
+ "system": "drone system 2218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26173155993845,
+ 39.353253193269204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2219",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2219 accessories"
+ }
+ },
+ "system": "drone system 2219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23224282879684,
+ 38.68251287580078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2220",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2220 accessories"
+ }
+ },
+ "system": "drone system 2220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50864270534612,
+ 38.94175387598404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2221",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2221 accessories"
+ }
+ },
+ "system": "drone system 2221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87501745088899,
+ 38.459133234452146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2222",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2222 accessories"
+ }
+ },
+ "system": "drone system 2222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85523879802098,
+ 38.88194708580088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2223",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2223 accessories"
+ }
+ },
+ "system": "drone system 2223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63862165861997,
+ 39.03366520469491
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2224",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2224 accessories"
+ }
+ },
+ "system": "drone system 2224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89246896812745,
+ 38.43677290592343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2225",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2225 accessories"
+ }
+ },
+ "system": "drone system 2225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09455547996721,
+ 39.671291479634405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2226",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2226 accessories"
+ }
+ },
+ "system": "drone system 2226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38962425811344,
+ 38.86779385331537
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2227",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2227 accessories"
+ }
+ },
+ "system": "drone system 2227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5671251619516,
+ 38.95598601813477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2228",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2228 accessories"
+ }
+ },
+ "system": "drone system 2228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14745645201054,
+ 38.62562094258416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2229",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2229 accessories"
+ }
+ },
+ "system": "drone system 2229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29291999366814,
+ 38.48450253826025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2230",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2230 accessories"
+ }
+ },
+ "system": "drone system 2230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33077253208458,
+ 39.2949575302785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2231",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2231 accessories"
+ }
+ },
+ "system": "drone system 2231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54002338016828,
+ 38.862029367250656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2232",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2232 accessories"
+ }
+ },
+ "system": "drone system 2232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12487981457485,
+ 38.485503570579404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2233",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2233 accessories"
+ }
+ },
+ "system": "drone system 2233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53268977004598,
+ 38.704118784351216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2234",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2234 accessories"
+ }
+ },
+ "system": "drone system 2234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38449760779307,
+ 39.541085184811244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2235",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2235 accessories"
+ }
+ },
+ "system": "drone system 2235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64353321057752,
+ 38.707371403886164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2236",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2236 accessories"
+ }
+ },
+ "system": "drone system 2236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84516115086399,
+ 38.821643747947086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2237",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2237 accessories"
+ }
+ },
+ "system": "drone system 2237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58948486584538,
+ 39.155348296957825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2238",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2238 accessories"
+ }
+ },
+ "system": "drone system 2238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87280130128697,
+ 38.774219751882036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2239 accessories"
+ }
+ },
+ "system": "drone system 2239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45966773709776,
+ 39.160703322064954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2240",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2240 accessories"
+ }
+ },
+ "system": "drone system 2240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44950096227082,
+ 38.92879987568015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2241",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2241 accessories"
+ }
+ },
+ "system": "drone system 2241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97014714043904,
+ 39.59205266045409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2242",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2242 accessories"
+ }
+ },
+ "system": "drone system 2242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43556362764971,
+ 39.084039736345275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2243",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2243 accessories"
+ }
+ },
+ "system": "drone system 2243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8397681991211,
+ 38.86646928623154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2244",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2244 accessories"
+ }
+ },
+ "system": "drone system 2244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33345332407468,
+ 38.90743992870755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2245",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2245 accessories"
+ }
+ },
+ "system": "drone system 2245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4560521988753,
+ 39.69018162939275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2246",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2246 accessories"
+ }
+ },
+ "system": "drone system 2246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06775548232324,
+ 38.249400297700824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2247",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2247 accessories"
+ }
+ },
+ "system": "drone system 2247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6745294206399,
+ 38.59827090621313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2248",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2248 accessories"
+ }
+ },
+ "system": "drone system 2248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51225996764846,
+ 38.79946280470221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2249",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2249 accessories"
+ }
+ },
+ "system": "drone system 2249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7992230453231,
+ 38.25134275523677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2250",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2250 accessories"
+ }
+ },
+ "system": "drone system 2250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99830986950154,
+ 38.58010647244295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2251",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2251 accessories"
+ }
+ },
+ "system": "drone system 2251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7353100905979,
+ 38.432374010510074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2252",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2252 accessories"
+ }
+ },
+ "system": "drone system 2252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61229548001467,
+ 39.334777664652556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2253",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2253 accessories"
+ }
+ },
+ "system": "drone system 2253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58159000434769,
+ 38.23370224406568
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2254",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2254 accessories"
+ }
+ },
+ "system": "drone system 2254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46888972736255,
+ 39.07150567581528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2255",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2255 accessories"
+ }
+ },
+ "system": "drone system 2255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14917735644146,
+ 38.88706361790938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2256",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2256 accessories"
+ }
+ },
+ "system": "drone system 2256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97475212983964,
+ 39.75133969080079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2257",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2257 accessories"
+ }
+ },
+ "system": "drone system 2257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75104696384393,
+ 38.793108630508456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2258",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2258 accessories"
+ }
+ },
+ "system": "drone system 2258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50129081407741,
+ 39.01327176103885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2259",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2259 accessories"
+ }
+ },
+ "system": "drone system 2259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85969648760184,
+ 38.03332579867208
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2260",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2260 accessories"
+ }
+ },
+ "system": "drone system 2260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7644212946208,
+ 39.39930886532471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2261",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2261 accessories"
+ }
+ },
+ "system": "drone system 2261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15025791926115,
+ 39.78483972667147
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2262",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2262 accessories"
+ }
+ },
+ "system": "drone system 2262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4200120978238,
+ 38.842659951279934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2263",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2263 accessories"
+ }
+ },
+ "system": "drone system 2263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68104141554001,
+ 38.43274270101364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2264",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2264 accessories"
+ }
+ },
+ "system": "drone system 2264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40210715267614,
+ 38.883115691395545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2265",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2265 accessories"
+ }
+ },
+ "system": "drone system 2265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3416091290883,
+ 38.879979218277256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2266",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2266 accessories"
+ }
+ },
+ "system": "drone system 2266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58851225979075,
+ 39.24384137183976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2267",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2267 accessories"
+ }
+ },
+ "system": "drone system 2267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34015732757865,
+ 38.58801925602576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2268",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2268 accessories"
+ }
+ },
+ "system": "drone system 2268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87895979027155,
+ 39.53273181314392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2269",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2269 accessories"
+ }
+ },
+ "system": "drone system 2269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61615364959385,
+ 39.22221478167092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2270",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2270 accessories"
+ }
+ },
+ "system": "drone system 2270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56547250372537,
+ 38.83076302238378
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2271",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2271 accessories"
+ }
+ },
+ "system": "drone system 2271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19322464567524,
+ 39.492271849795216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2272",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2272 accessories"
+ }
+ },
+ "system": "drone system 2272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47222807881829,
+ 38.63975082848351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2273",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2273 accessories"
+ }
+ },
+ "system": "drone system 2273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36405195254743,
+ 38.66362124268006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2274",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2274 accessories"
+ }
+ },
+ "system": "drone system 2274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11719011713788,
+ 38.60042058760688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2275",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2275 accessories"
+ }
+ },
+ "system": "drone system 2275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49062569415253,
+ 39.03293307277232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2276",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2276 accessories"
+ }
+ },
+ "system": "drone system 2276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72394447104494,
+ 39.03548043573408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2277",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2277 accessories"
+ }
+ },
+ "system": "drone system 2277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74175155429033,
+ 39.395960094113974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2278",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2278 accessories"
+ }
+ },
+ "system": "drone system 2278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59280469340045,
+ 38.23129141334908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2279",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2279 accessories"
+ }
+ },
+ "system": "drone system 2279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91758284132085,
+ 38.951279498037636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2280",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2280 accessories"
+ }
+ },
+ "system": "drone system 2280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91076786413576,
+ 38.77173614844781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2281",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2281 accessories"
+ }
+ },
+ "system": "drone system 2281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87137031326728,
+ 38.37360635727026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2282",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2282 accessories"
+ }
+ },
+ "system": "drone system 2282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94817205198318,
+ 39.769510858840306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2283",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2283 accessories"
+ }
+ },
+ "system": "drone system 2283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48495249682254,
+ 38.42351024794324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2284",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2284 accessories"
+ }
+ },
+ "system": "drone system 2284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2412448307972,
+ 39.70997214153646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2285",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2285 accessories"
+ }
+ },
+ "system": "drone system 2285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94792881524378,
+ 39.21619037496893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2286",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2286 accessories"
+ }
+ },
+ "system": "drone system 2286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2425286537409,
+ 39.321768706559794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2287",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2287 accessories"
+ }
+ },
+ "system": "drone system 2287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94843338343448,
+ 38.49681155810289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2288",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2288 accessories"
+ }
+ },
+ "system": "drone system 2288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63162653325297,
+ 39.1934643328652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2289",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2289 accessories"
+ }
+ },
+ "system": "drone system 2289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46163656347538,
+ 38.64084672145956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2290",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2290 accessories"
+ }
+ },
+ "system": "drone system 2290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37266825744288,
+ 39.14121149994959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2291",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2291 accessories"
+ }
+ },
+ "system": "drone system 2291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30164867886386,
+ 38.53657895742659
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2292",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2292 accessories"
+ }
+ },
+ "system": "drone system 2292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72065403491266,
+ 39.6583116681383
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2293",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2293 accessories"
+ }
+ },
+ "system": "drone system 2293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39122880710592,
+ 39.15826757244309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2294",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2294 accessories"
+ }
+ },
+ "system": "drone system 2294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12940651800653,
+ 39.77189468368219
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2295",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2295 accessories"
+ }
+ },
+ "system": "drone system 2295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8493468071666,
+ 39.354579374068344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2296",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2296 accessories"
+ }
+ },
+ "system": "drone system 2296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34151809407489,
+ 39.043252044966245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2297",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2297 accessories"
+ }
+ },
+ "system": "drone system 2297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99246391174763,
+ 39.62167098732731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2298",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2298 accessories"
+ }
+ },
+ "system": "drone system 2298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53392954471836,
+ 39.212758591667786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2299",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2299 accessories"
+ }
+ },
+ "system": "drone system 2299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37030331083129,
+ 39.06846237792226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2300",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2300 accessories"
+ }
+ },
+ "system": "drone system 2300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40309846294456,
+ 39.49540937907959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2301",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2301 accessories"
+ }
+ },
+ "system": "drone system 2301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89756030540006,
+ 39.06849413432468
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2302",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2302 accessories"
+ }
+ },
+ "system": "drone system 2302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55302356115048,
+ 38.49793785021958
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2303",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2303 accessories"
+ }
+ },
+ "system": "drone system 2303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99359867621646,
+ 39.63815845245441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2304",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2304 accessories"
+ }
+ },
+ "system": "drone system 2304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44611680958153,
+ 38.60209073443214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2305",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2305 accessories"
+ }
+ },
+ "system": "drone system 2305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73576031473635,
+ 39.302811394995835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2306",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2306 accessories"
+ }
+ },
+ "system": "drone system 2306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59066695932256,
+ 39.18078783878938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2307",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2307 accessories"
+ }
+ },
+ "system": "drone system 2307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75495942574365,
+ 38.27410183929422
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2308",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2308 accessories"
+ }
+ },
+ "system": "drone system 2308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37275192737468,
+ 38.864651985397536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2309",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2309 accessories"
+ }
+ },
+ "system": "drone system 2309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76461772188908,
+ 39.416153415143725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2310",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2310 accessories"
+ }
+ },
+ "system": "drone system 2310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06084566829429,
+ 39.30502519025423
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2311",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2311 accessories"
+ }
+ },
+ "system": "drone system 2311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35603904150226,
+ 39.260332168643885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2312",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2312 accessories"
+ }
+ },
+ "system": "drone system 2312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60708814943153,
+ 39.69356254867026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2313 accessories"
+ }
+ },
+ "system": "drone system 2313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09301530130396,
+ 39.510362086231126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2314",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2314 accessories"
+ }
+ },
+ "system": "drone system 2314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58208609132383,
+ 39.145245394898566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2315",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2315 accessories"
+ }
+ },
+ "system": "drone system 2315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8497832630836,
+ 38.69244759662948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2316",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2316 accessories"
+ }
+ },
+ "system": "drone system 2316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66235048450639,
+ 39.2608556015027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2317",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2317 accessories"
+ }
+ },
+ "system": "drone system 2317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96600715488742,
+ 38.52548359555621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2318",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2318 accessories"
+ }
+ },
+ "system": "drone system 2318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49145655714915,
+ 39.003977054074774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2319",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2319 accessories"
+ }
+ },
+ "system": "drone system 2319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21230024663276,
+ 38.88310060410288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2320",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2320 accessories"
+ }
+ },
+ "system": "drone system 2320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49814629314002,
+ 39.13538154280028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2321",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2321 accessories"
+ }
+ },
+ "system": "drone system 2321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44483973196522,
+ 39.23829353766512
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2322",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2322 accessories"
+ }
+ },
+ "system": "drone system 2322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2078257379503,
+ 39.33827725764225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2323",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2323 accessories"
+ }
+ },
+ "system": "drone system 2323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46562317430394,
+ 39.430953388585785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2324",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2324 accessories"
+ }
+ },
+ "system": "drone system 2324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96611280661672,
+ 39.477398316032826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2325",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2325 accessories"
+ }
+ },
+ "system": "drone system 2325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28633007454701,
+ 38.352487955496066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2326",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2326 accessories"
+ }
+ },
+ "system": "drone system 2326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44563638701142,
+ 39.20471363889361
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2327",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2327 accessories"
+ }
+ },
+ "system": "drone system 2327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7954278430068,
+ 38.495849823050605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2328",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2328 accessories"
+ }
+ },
+ "system": "drone system 2328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03340770700095,
+ 38.36386138809711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2329",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2329 accessories"
+ }
+ },
+ "system": "drone system 2329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48850509226493,
+ 38.923264746600964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2330",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2330 accessories"
+ }
+ },
+ "system": "drone system 2330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88238654337883,
+ 38.74188475958918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2331",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2331 accessories"
+ }
+ },
+ "system": "drone system 2331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84041544394128,
+ 39.755558992241156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2332",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2332 accessories"
+ }
+ },
+ "system": "drone system 2332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35934528152019,
+ 39.66062182761984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2333",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2333 accessories"
+ }
+ },
+ "system": "drone system 2333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42770206782153,
+ 38.33308129531101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2334",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2334 accessories"
+ }
+ },
+ "system": "drone system 2334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67128890554524,
+ 38.753291464739476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2335",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2335 accessories"
+ }
+ },
+ "system": "drone system 2335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18566681135461,
+ 38.278948401860916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2336",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2336 accessories"
+ }
+ },
+ "system": "drone system 2336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97513256615782,
+ 38.035979175529405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2337",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2337 accessories"
+ }
+ },
+ "system": "drone system 2337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61051469785977,
+ 38.99802445142031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2338",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2338 accessories"
+ }
+ },
+ "system": "drone system 2338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19044503126138,
+ 39.0153937562741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2339",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2339 accessories"
+ }
+ },
+ "system": "drone system 2339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41924194332378,
+ 39.40096814727995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2340",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2340 accessories"
+ }
+ },
+ "system": "drone system 2340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61234548466659,
+ 38.92083015038997
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2341",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2341 accessories"
+ }
+ },
+ "system": "drone system 2341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91672902347335,
+ 38.84245884243936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2342",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2342 accessories"
+ }
+ },
+ "system": "drone system 2342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68475165617959,
+ 38.45192666617489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2343",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2343 accessories"
+ }
+ },
+ "system": "drone system 2343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4486589952067,
+ 38.23760024503917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2344",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2344 accessories"
+ }
+ },
+ "system": "drone system 2344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78780398786975,
+ 39.48763742634535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2345",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2345 accessories"
+ }
+ },
+ "system": "drone system 2345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29960694539638,
+ 38.885334217905275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2346",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2346 accessories"
+ }
+ },
+ "system": "drone system 2346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32433412711417,
+ 38.35890566400154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2347",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2347 accessories"
+ }
+ },
+ "system": "drone system 2347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89362808515419,
+ 39.34835943432036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2348",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2348 accessories"
+ }
+ },
+ "system": "drone system 2348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0463702781344,
+ 38.775942453315025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2349",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2349 accessories"
+ }
+ },
+ "system": "drone system 2349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11537467436719,
+ 38.35971161825032
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2350",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2350 accessories"
+ }
+ },
+ "system": "drone system 2350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99668211921814,
+ 38.12500892802649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2351",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2351 accessories"
+ }
+ },
+ "system": "drone system 2351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79896018185306,
+ 39.071538898972435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2352",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2352 accessories"
+ }
+ },
+ "system": "drone system 2352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52173297303831,
+ 39.43326308019691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2353",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2353 accessories"
+ }
+ },
+ "system": "drone system 2353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26542836634339,
+ 39.59600034707449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2354",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2354 accessories"
+ }
+ },
+ "system": "drone system 2354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45978234551167,
+ 38.83644802701974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2355",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2355 accessories"
+ }
+ },
+ "system": "drone system 2355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05531966501194,
+ 38.14481909414852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2356",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2356 accessories"
+ }
+ },
+ "system": "drone system 2356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83098582712375,
+ 39.01765173638716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2357",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2357 accessories"
+ }
+ },
+ "system": "drone system 2357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61582667268208,
+ 38.97206287870438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2358",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2358 accessories"
+ }
+ },
+ "system": "drone system 2358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61332718646372,
+ 38.31744559481234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2359",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2359 accessories"
+ }
+ },
+ "system": "drone system 2359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89568054983525,
+ 38.896765227859596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2360",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2360 accessories"
+ }
+ },
+ "system": "drone system 2360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4974784621214,
+ 39.652938341799796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2361",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2361 accessories"
+ }
+ },
+ "system": "drone system 2361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00320722600274,
+ 39.08858651128449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2362",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2362 accessories"
+ }
+ },
+ "system": "drone system 2362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39583632170975,
+ 39.1334874350609
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2363",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2363 accessories"
+ }
+ },
+ "system": "drone system 2363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1318105375317,
+ 39.493055477340235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2364",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2364 accessories"
+ }
+ },
+ "system": "drone system 2364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97902409989972,
+ 38.430766147084846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2365",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2365 accessories"
+ }
+ },
+ "system": "drone system 2365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78010022700481,
+ 38.460108492692235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2366",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2366 accessories"
+ }
+ },
+ "system": "drone system 2366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15757474741814,
+ 38.98718697366907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2367",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2367 accessories"
+ }
+ },
+ "system": "drone system 2367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87193495290406,
+ 38.2498938469166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2368",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2368 accessories"
+ }
+ },
+ "system": "drone system 2368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25168981919302,
+ 38.78167186221319
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2369",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2369 accessories"
+ }
+ },
+ "system": "drone system 2369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25467547097625,
+ 38.397188897515164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2370 accessories"
+ }
+ },
+ "system": "drone system 2370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86562058291314,
+ 39.042188469712556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2371",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2371 accessories"
+ }
+ },
+ "system": "drone system 2371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30094125633627,
+ 39.032203734073555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2372",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2372 accessories"
+ }
+ },
+ "system": "drone system 2372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86669104342683,
+ 39.430302421023896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2373",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2373 accessories"
+ }
+ },
+ "system": "drone system 2373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12341207094656,
+ 38.513211044625336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2374",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2374 accessories"
+ }
+ },
+ "system": "drone system 2374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45021363653251,
+ 39.17008193856245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2375",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2375 accessories"
+ }
+ },
+ "system": "drone system 2375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5248514792205,
+ 39.05821636813549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2376",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2376 accessories"
+ }
+ },
+ "system": "drone system 2376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94355518705201,
+ 38.794310606026215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2377",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2377 accessories"
+ }
+ },
+ "system": "drone system 2377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29324626268712,
+ 38.78724068404331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2378",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2378 accessories"
+ }
+ },
+ "system": "drone system 2378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91592707530715,
+ 38.576392245891824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2379",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2379 accessories"
+ }
+ },
+ "system": "drone system 2379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85447187754885,
+ 39.634535157230296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2380",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2380 accessories"
+ }
+ },
+ "system": "drone system 2380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31074239229137,
+ 39.49209853968417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2381",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2381 accessories"
+ }
+ },
+ "system": "drone system 2381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81683581292667,
+ 39.67572553807352
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2382",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2382 accessories"
+ }
+ },
+ "system": "drone system 2382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76321830968011,
+ 38.922731821206284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2383",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2383 accessories"
+ }
+ },
+ "system": "drone system 2383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71796263552422,
+ 38.988242707290915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2384",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2384 accessories"
+ }
+ },
+ "system": "drone system 2384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22060618241802,
+ 38.12262575734208
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2385",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2385 accessories"
+ }
+ },
+ "system": "drone system 2385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39082229927567,
+ 39.00421631916426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2386",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2386 accessories"
+ }
+ },
+ "system": "drone system 2386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66480060465568,
+ 38.65374165195859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2387",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2387 accessories"
+ }
+ },
+ "system": "drone system 2387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41459423977868,
+ 38.312141901969326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2388",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2388 accessories"
+ }
+ },
+ "system": "drone system 2388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69568712428307,
+ 38.67183851826906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2389",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2389 accessories"
+ }
+ },
+ "system": "drone system 2389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61273744868518,
+ 39.28623478303418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2390",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2390 accessories"
+ }
+ },
+ "system": "drone system 2390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61627375292906,
+ 38.37265358124907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2391",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2391 accessories"
+ }
+ },
+ "system": "drone system 2391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04740455291554,
+ 38.62069851925738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2392",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2392 accessories"
+ }
+ },
+ "system": "drone system 2392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11027412061924,
+ 38.041233580493014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2393",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2393 accessories"
+ }
+ },
+ "system": "drone system 2393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17260181201003,
+ 39.73713271709482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2394",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2394 accessories"
+ }
+ },
+ "system": "drone system 2394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46417639877149,
+ 38.48996368741584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2395",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2395 accessories"
+ }
+ },
+ "system": "drone system 2395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26208642638113,
+ 38.85740391268323
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2396",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2396 accessories"
+ }
+ },
+ "system": "drone system 2396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26912858729105,
+ 39.32525824941808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2397",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2397 accessories"
+ }
+ },
+ "system": "drone system 2397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56124816197817,
+ 39.017563925769295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2398",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2398 accessories"
+ }
+ },
+ "system": "drone system 2398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48563948621289,
+ 39.16789214795039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2399",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2399 accessories"
+ }
+ },
+ "system": "drone system 2399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39231697515933,
+ 38.98697911905841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2400",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2400 accessories"
+ }
+ },
+ "system": "drone system 2400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40282245817642,
+ 38.22517356560038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2401",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2401 accessories"
+ }
+ },
+ "system": "drone system 2401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47683540812348,
+ 39.01877239088661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2402",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2402 accessories"
+ }
+ },
+ "system": "drone system 2402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48140190248178,
+ 39.0036917591961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2403",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2403 accessories"
+ }
+ },
+ "system": "drone system 2403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08913391259992,
+ 38.28467871716842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2404",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2404 accessories"
+ }
+ },
+ "system": "drone system 2404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76932374923166,
+ 39.41506191804006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2405",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2405 accessories"
+ }
+ },
+ "system": "drone system 2405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74466245999814,
+ 38.36203720569762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2406",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2406 accessories"
+ }
+ },
+ "system": "drone system 2406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96940041089005,
+ 38.88668451095613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2407",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2407 accessories"
+ }
+ },
+ "system": "drone system 2407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66277373569145,
+ 38.60817502343937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2408",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2408 accessories"
+ }
+ },
+ "system": "drone system 2408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42375398669542,
+ 38.4723816023227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2409",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2409 accessories"
+ }
+ },
+ "system": "drone system 2409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74287786162562,
+ 38.860962115518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2410",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2410 accessories"
+ }
+ },
+ "system": "drone system 2410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16991500524271,
+ 39.173659559270526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2411",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2411 accessories"
+ }
+ },
+ "system": "drone system 2411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47082428765256,
+ 38.96530536984399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2412",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2412 accessories"
+ }
+ },
+ "system": "drone system 2412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19477978855048,
+ 39.07679984120059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2413",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2413 accessories"
+ }
+ },
+ "system": "drone system 2413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75127189664818,
+ 38.519335102742644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2414",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2414 accessories"
+ }
+ },
+ "system": "drone system 2414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78012008278759,
+ 38.9732198567105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2415",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2415 accessories"
+ }
+ },
+ "system": "drone system 2415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18504151844488,
+ 38.20240025649612
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2416",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2416 accessories"
+ }
+ },
+ "system": "drone system 2416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23582056470633,
+ 38.42924433994752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2417",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2417 accessories"
+ }
+ },
+ "system": "drone system 2417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74586148173928,
+ 38.54286895562752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2418",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2418 accessories"
+ }
+ },
+ "system": "drone system 2418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48972949367028,
+ 39.08082621232707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2419",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2419 accessories"
+ }
+ },
+ "system": "drone system 2419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37318969621806,
+ 39.323485414831744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2420",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2420 accessories"
+ }
+ },
+ "system": "drone system 2420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79506587816864,
+ 39.4794392145824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2421",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2421 accessories"
+ }
+ },
+ "system": "drone system 2421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40940363449054,
+ 38.809928144583395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2422",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2422 accessories"
+ }
+ },
+ "system": "drone system 2422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59683799763339,
+ 39.16275278443081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2423",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2423 accessories"
+ }
+ },
+ "system": "drone system 2423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39524458368842,
+ 38.18234097910723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2424",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2424 accessories"
+ }
+ },
+ "system": "drone system 2424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64651053022303,
+ 38.800116150211636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2425",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2425 accessories"
+ }
+ },
+ "system": "drone system 2425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86374070148722,
+ 38.852823397525974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2426",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2426 accessories"
+ }
+ },
+ "system": "drone system 2426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56828782131896,
+ 38.84977551539444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2427",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2427 accessories"
+ }
+ },
+ "system": "drone system 2427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47079140341991,
+ 38.82646235079148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2428",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2428 accessories"
+ }
+ },
+ "system": "drone system 2428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37151928183881,
+ 39.192770014137416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2429",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2429 accessories"
+ }
+ },
+ "system": "drone system 2429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79763343551603,
+ 39.09395686996362
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2430",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2430 accessories"
+ }
+ },
+ "system": "drone system 2430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50912166021864,
+ 39.053523257669596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2431",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2431 accessories"
+ }
+ },
+ "system": "drone system 2431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67551118750735,
+ 38.31572859681445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2432",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2432 accessories"
+ }
+ },
+ "system": "drone system 2432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89795662124061,
+ 38.72911037832005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2433",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2433 accessories"
+ }
+ },
+ "system": "drone system 2433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31072245997264,
+ 39.17641788474582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2434",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2434 accessories"
+ }
+ },
+ "system": "drone system 2434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38712753637466,
+ 39.18260998215908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2435",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2435 accessories"
+ }
+ },
+ "system": "drone system 2435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34148898270499,
+ 38.267742958429025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2436",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2436 accessories"
+ }
+ },
+ "system": "drone system 2436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57542901787046,
+ 39.58733185631535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2437",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2437 accessories"
+ }
+ },
+ "system": "drone system 2437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59157266981497,
+ 38.20644522555072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2438",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2438 accessories"
+ }
+ },
+ "system": "drone system 2438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60524441429949,
+ 39.21981190598759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2439",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2439 accessories"
+ }
+ },
+ "system": "drone system 2439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97995953407472,
+ 39.49577905752008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2440",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2440 accessories"
+ }
+ },
+ "system": "drone system 2440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69568716240806,
+ 39.11229279417958
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2441",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2441 accessories"
+ }
+ },
+ "system": "drone system 2441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63673110541245,
+ 39.18051803813855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2442",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2442 accessories"
+ }
+ },
+ "system": "drone system 2442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09790998982608,
+ 38.83532786355727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2443",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2443 accessories"
+ }
+ },
+ "system": "drone system 2443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53411503428521,
+ 39.15526079235785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2444",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2444 accessories"
+ }
+ },
+ "system": "drone system 2444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01832978758097,
+ 38.72907261128165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2445",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2445 accessories"
+ }
+ },
+ "system": "drone system 2445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15524851111238,
+ 38.76686776406341
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2446",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2446 accessories"
+ }
+ },
+ "system": "drone system 2446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41437480777326,
+ 38.42455490722708
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2447",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2447 accessories"
+ }
+ },
+ "system": "drone system 2447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56345531393947,
+ 39.12603900303746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2448",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2448 accessories"
+ }
+ },
+ "system": "drone system 2448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14146294369445,
+ 39.247024028862725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2449",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2449 accessories"
+ }
+ },
+ "system": "drone system 2449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80448621297438,
+ 39.66956812311008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2450",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2450 accessories"
+ }
+ },
+ "system": "drone system 2450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39933978966062,
+ 39.15542488475572
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2451",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2451 accessories"
+ }
+ },
+ "system": "drone system 2451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85327967486027,
+ 39.41450997615348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2452",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2452 accessories"
+ }
+ },
+ "system": "drone system 2452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69452439114974,
+ 38.390352527681976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2453",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2453 accessories"
+ }
+ },
+ "system": "drone system 2453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12459000841808,
+ 39.592091587228296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2454",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2454 accessories"
+ }
+ },
+ "system": "drone system 2454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70221479223653,
+ 39.14104470860904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2455",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2455 accessories"
+ }
+ },
+ "system": "drone system 2455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46353263667955,
+ 38.53343574751551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2456",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2456 accessories"
+ }
+ },
+ "system": "drone system 2456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7442652419258,
+ 38.36765758583621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2457",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2457 accessories"
+ }
+ },
+ "system": "drone system 2457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70797068996991,
+ 39.11809714976818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2458",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2458 accessories"
+ }
+ },
+ "system": "drone system 2458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4521281261623,
+ 38.339309782151545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2459",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2459 accessories"
+ }
+ },
+ "system": "drone system 2459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89262760896484,
+ 38.785188146170675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2460",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2460 accessories"
+ }
+ },
+ "system": "drone system 2460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76610713522953,
+ 39.305967652122156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2461",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2461 accessories"
+ }
+ },
+ "system": "drone system 2461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86734838795002,
+ 39.11623351536608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2462",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2462 accessories"
+ }
+ },
+ "system": "drone system 2462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02993301073566,
+ 39.392249816749946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2463",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2463 accessories"
+ }
+ },
+ "system": "drone system 2463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51332699599261,
+ 39.359847084119515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2464",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2464 accessories"
+ }
+ },
+ "system": "drone system 2464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61991419699933,
+ 38.64809826532712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2465",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2465 accessories"
+ }
+ },
+ "system": "drone system 2465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02058015046646,
+ 39.58260791218236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2466",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2466 accessories"
+ }
+ },
+ "system": "drone system 2466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5312774440433,
+ 39.48815294186415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2467",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2467 accessories"
+ }
+ },
+ "system": "drone system 2467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83169643239614,
+ 39.03126904873255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2468",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2468 accessories"
+ }
+ },
+ "system": "drone system 2468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6790302713785,
+ 39.00752630115007
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2469",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2469 accessories"
+ }
+ },
+ "system": "drone system 2469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4199801696084,
+ 39.606058184597124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2470",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2470 accessories"
+ }
+ },
+ "system": "drone system 2470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98167736762166,
+ 38.34537425856354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2471",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2471 accessories"
+ }
+ },
+ "system": "drone system 2471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23929460918642,
+ 39.69147130386815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2472",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2472 accessories"
+ }
+ },
+ "system": "drone system 2472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2965609237505,
+ 39.04283722429069
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2473",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2473 accessories"
+ }
+ },
+ "system": "drone system 2473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9254331034542,
+ 38.81225518080133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2474",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2474 accessories"
+ }
+ },
+ "system": "drone system 2474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22245680934608,
+ 39.1039721686653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2475",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2475 accessories"
+ }
+ },
+ "system": "drone system 2475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86289842290415,
+ 39.25637391091861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2476",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2476 accessories"
+ }
+ },
+ "system": "drone system 2476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10763008380748,
+ 39.74724970364034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2477",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2477 accessories"
+ }
+ },
+ "system": "drone system 2477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23515006243619,
+ 39.19594473368321
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2478",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2478 accessories"
+ }
+ },
+ "system": "drone system 2478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12558089745986,
+ 38.34490355545097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2479",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2479 accessories"
+ }
+ },
+ "system": "drone system 2479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.504857433114,
+ 39.57616786409945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2480",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2480 accessories"
+ }
+ },
+ "system": "drone system 2480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65989992940213,
+ 38.58189674368227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2481",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2481 accessories"
+ }
+ },
+ "system": "drone system 2481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15003614374083,
+ 39.72012923719385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2482",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2482 accessories"
+ }
+ },
+ "system": "drone system 2482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7642896708501,
+ 39.14895372330964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2483",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2483 accessories"
+ }
+ },
+ "system": "drone system 2483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04410235269955,
+ 38.423122870622
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2484",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2484 accessories"
+ }
+ },
+ "system": "drone system 2484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40238046793723,
+ 38.64240252969791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2485",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2485 accessories"
+ }
+ },
+ "system": "drone system 2485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83823206379154,
+ 38.24974379427442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2486",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2486 accessories"
+ }
+ },
+ "system": "drone system 2486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72838986688757,
+ 39.05508407893457
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2487",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2487 accessories"
+ }
+ },
+ "system": "drone system 2487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7893806734835,
+ 38.508903791182895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2488",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2488 accessories"
+ }
+ },
+ "system": "drone system 2488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20832422041927,
+ 39.55032305519012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2489",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2489 accessories"
+ }
+ },
+ "system": "drone system 2489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52309718628666,
+ 39.50860032089521
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2490",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2490 accessories"
+ }
+ },
+ "system": "drone system 2490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43241748569193,
+ 38.78525470434963
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2491",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2491 accessories"
+ }
+ },
+ "system": "drone system 2491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45507423855186,
+ 38.993826433483065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2492",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2492 accessories"
+ }
+ },
+ "system": "drone system 2492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38011480934574,
+ 39.57762697879818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2493",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2493 accessories"
+ }
+ },
+ "system": "drone system 2493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02092870607747,
+ 38.64015058594171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2494",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2494 accessories"
+ }
+ },
+ "system": "drone system 2494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23478677467641,
+ 38.95930011459527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2495",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2495 accessories"
+ }
+ },
+ "system": "drone system 2495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77362746650542,
+ 39.08606579056445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2496",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2496 accessories"
+ }
+ },
+ "system": "drone system 2496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49636556559578,
+ 39.208022465603094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2497",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2497 accessories"
+ }
+ },
+ "system": "drone system 2497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64417435237827,
+ 38.71599325712615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2498",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2498 accessories"
+ }
+ },
+ "system": "drone system 2498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45130085891466,
+ 39.57233167204806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2499",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2499 accessories"
+ }
+ },
+ "system": "drone system 2499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62392045068144,
+ 39.357907258206495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2500",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2500 accessories"
+ }
+ },
+ "system": "drone system 2500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49581712320617,
+ 39.020911954913316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2501",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2501 accessories"
+ }
+ },
+ "system": "drone system 2501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06619898905971,
+ 38.73274562574615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2502",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2502 accessories"
+ }
+ },
+ "system": "drone system 2502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34823716866202,
+ 38.772456928938205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2503",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2503 accessories"
+ }
+ },
+ "system": "drone system 2503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43917882226091,
+ 38.969532369037935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2504",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2504 accessories"
+ }
+ },
+ "system": "drone system 2504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59927496608981,
+ 39.528433420752386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2505 accessories"
+ }
+ },
+ "system": "drone system 2505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27651735336822,
+ 38.86891230606434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2506",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2506 accessories"
+ }
+ },
+ "system": "drone system 2506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0227353469931,
+ 38.32101191958588
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2507",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2507 accessories"
+ }
+ },
+ "system": "drone system 2507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53288887332755,
+ 38.65557777973483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2508",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2508 accessories"
+ }
+ },
+ "system": "drone system 2508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96005161430446,
+ 39.414081510851936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2509",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2509 accessories"
+ }
+ },
+ "system": "drone system 2509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41981474215993,
+ 38.793692586182026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2510",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2510 accessories"
+ }
+ },
+ "system": "drone system 2510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80340690239922,
+ 38.70175180536437
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2511",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2511 accessories"
+ }
+ },
+ "system": "drone system 2511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88090753487005,
+ 39.53873402868692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2512",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2512 accessories"
+ }
+ },
+ "system": "drone system 2512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51301581201018,
+ 39.3991325455152
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2513",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2513 accessories"
+ }
+ },
+ "system": "drone system 2513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37694809105552,
+ 39.71588394275172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2514",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2514 accessories"
+ }
+ },
+ "system": "drone system 2514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84761186276398,
+ 39.14962473346896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2515",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2515 accessories"
+ }
+ },
+ "system": "drone system 2515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15396049716489,
+ 38.913216075239404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2516",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2516 accessories"
+ }
+ },
+ "system": "drone system 2516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48124675996503,
+ 38.873702942790906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2517",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2517 accessories"
+ }
+ },
+ "system": "drone system 2517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7843124648548,
+ 38.41317046901779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2518",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2518 accessories"
+ }
+ },
+ "system": "drone system 2518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38582510619864,
+ 38.10138229459696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2519",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2519 accessories"
+ }
+ },
+ "system": "drone system 2519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75241900187608,
+ 39.400588072347304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2520",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2520 accessories"
+ }
+ },
+ "system": "drone system 2520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77811940428951,
+ 39.61952231603593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2521",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2521 accessories"
+ }
+ },
+ "system": "drone system 2521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83752206739784,
+ 39.15504161548311
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2522",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2522 accessories"
+ }
+ },
+ "system": "drone system 2522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55820875205093,
+ 39.38287314743057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2523",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2523 accessories"
+ }
+ },
+ "system": "drone system 2523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69592615814086,
+ 39.41906850655672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2524",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2524 accessories"
+ }
+ },
+ "system": "drone system 2524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73146614713997,
+ 39.133582121106464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2525",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2525 accessories"
+ }
+ },
+ "system": "drone system 2525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11081639848953,
+ 38.08306909754766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2526",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2526 accessories"
+ }
+ },
+ "system": "drone system 2526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8750442329475,
+ 38.20112807165436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2527",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2527 accessories"
+ }
+ },
+ "system": "drone system 2527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73792113955707,
+ 38.67393849484884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2528",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2528 accessories"
+ }
+ },
+ "system": "drone system 2528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85285598702981,
+ 38.36492911759098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2529",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2529 accessories"
+ }
+ },
+ "system": "drone system 2529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20572007030395,
+ 38.98043558356414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2530",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2530 accessories"
+ }
+ },
+ "system": "drone system 2530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77118177258505,
+ 38.5374110326196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2531",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2531 accessories"
+ }
+ },
+ "system": "drone system 2531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67047822553513,
+ 38.916151201971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2532",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2532 accessories"
+ }
+ },
+ "system": "drone system 2532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23983733809749,
+ 38.46374803709215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2533",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2533 accessories"
+ }
+ },
+ "system": "drone system 2533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21655182837164,
+ 38.47577705041354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2534",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2534 accessories"
+ }
+ },
+ "system": "drone system 2534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02373362163792,
+ 39.256954032438955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2535",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2535 accessories"
+ }
+ },
+ "system": "drone system 2535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34222394253501,
+ 38.72139066900403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2536",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2536 accessories"
+ }
+ },
+ "system": "drone system 2536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6510771181429,
+ 39.27327349643196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2537",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2537 accessories"
+ }
+ },
+ "system": "drone system 2537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64542599467751,
+ 39.050935137566455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2538",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2538 accessories"
+ }
+ },
+ "system": "drone system 2538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54217037552486,
+ 38.28501765449963
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2539",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2539 accessories"
+ }
+ },
+ "system": "drone system 2539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27172074003892,
+ 39.05841674748608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2540",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2540 accessories"
+ }
+ },
+ "system": "drone system 2540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17639426127765,
+ 39.4879039571843
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2541",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2541 accessories"
+ }
+ },
+ "system": "drone system 2541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53102357135269,
+ 39.196704719949345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2542",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2542 accessories"
+ }
+ },
+ "system": "drone system 2542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09809567794791,
+ 39.18676022628684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2543",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2543 accessories"
+ }
+ },
+ "system": "drone system 2543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58136026248819,
+ 39.40641659098044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2544",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2544 accessories"
+ }
+ },
+ "system": "drone system 2544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48289726116623,
+ 38.836566729591105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2545",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2545 accessories"
+ }
+ },
+ "system": "drone system 2545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44477706963946,
+ 38.27851386133172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2546",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2546 accessories"
+ }
+ },
+ "system": "drone system 2546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60499153585694,
+ 38.40059495689044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2547",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2547 accessories"
+ }
+ },
+ "system": "drone system 2547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20592439761468,
+ 39.05574204604814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2548",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2548 accessories"
+ }
+ },
+ "system": "drone system 2548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36381545029887,
+ 39.33201522528642
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2549",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2549 accessories"
+ }
+ },
+ "system": "drone system 2549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39672700989748,
+ 38.78029793618389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2550",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2550 accessories"
+ }
+ },
+ "system": "drone system 2550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84485911642773,
+ 38.77043079591122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2551",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2551 accessories"
+ }
+ },
+ "system": "drone system 2551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82268598135268,
+ 39.37497344068229
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2552",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2552 accessories"
+ }
+ },
+ "system": "drone system 2552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77574258049442,
+ 38.91943977791997
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2553",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2553 accessories"
+ }
+ },
+ "system": "drone system 2553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26900349370972,
+ 38.54265683394467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2554",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2554 accessories"
+ }
+ },
+ "system": "drone system 2554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58641083604212,
+ 38.23946144588012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2555",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2555 accessories"
+ }
+ },
+ "system": "drone system 2555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85770500396697,
+ 38.97582404009016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2556",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2556 accessories"
+ }
+ },
+ "system": "drone system 2556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82507871835507,
+ 38.94442367367954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2557",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2557 accessories"
+ }
+ },
+ "system": "drone system 2557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11566453604738,
+ 38.37763372551893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2558",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2558 accessories"
+ }
+ },
+ "system": "drone system 2558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99430467661503,
+ 39.34275795537152
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2559",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2559 accessories"
+ }
+ },
+ "system": "drone system 2559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85482538109916,
+ 38.25906034510092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2560",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2560 accessories"
+ }
+ },
+ "system": "drone system 2560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48151853951963,
+ 38.24653518688389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2561",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2561 accessories"
+ }
+ },
+ "system": "drone system 2561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18248677228377,
+ 38.28585383171612
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2562",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2562 accessories"
+ }
+ },
+ "system": "drone system 2562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.974500548867,
+ 38.64268568703628
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2563",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2563 accessories"
+ }
+ },
+ "system": "drone system 2563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75148308801477,
+ 38.579930815767625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2564",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2564 accessories"
+ }
+ },
+ "system": "drone system 2564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70396844305436,
+ 38.9547540277013
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2565",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2565 accessories"
+ }
+ },
+ "system": "drone system 2565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56925932507087,
+ 38.32206431374646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2566 accessories"
+ }
+ },
+ "system": "drone system 2566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6068119360833,
+ 39.45237371311696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2567",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2567 accessories"
+ }
+ },
+ "system": "drone system 2567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82928568253172,
+ 38.89806792019676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2568",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2568 accessories"
+ }
+ },
+ "system": "drone system 2568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69339674539097,
+ 39.19604436035069
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2569",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2569 accessories"
+ }
+ },
+ "system": "drone system 2569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19022172630378,
+ 39.33486834630191
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2570",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2570 accessories"
+ }
+ },
+ "system": "drone system 2570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90260259974998,
+ 38.90225489193908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2571",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2571 accessories"
+ }
+ },
+ "system": "drone system 2571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60592661592142,
+ 38.94155187360533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2572",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2572 accessories"
+ }
+ },
+ "system": "drone system 2572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93812563986803,
+ 38.92769720098433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2573",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2573 accessories"
+ }
+ },
+ "system": "drone system 2573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52177376543604,
+ 38.833178974336604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2574",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2574 accessories"
+ }
+ },
+ "system": "drone system 2574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60224564668414,
+ 39.18795679456236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2575",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2575 accessories"
+ }
+ },
+ "system": "drone system 2575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19360881174103,
+ 38.88219161880247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2576",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2576 accessories"
+ }
+ },
+ "system": "drone system 2576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56222927594119,
+ 38.82892927605599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2577",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2577 accessories"
+ }
+ },
+ "system": "drone system 2577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91012800792862,
+ 38.88616472989825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2578",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2578 accessories"
+ }
+ },
+ "system": "drone system 2578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26612138605749,
+ 39.03307323358879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2579",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2579 accessories"
+ }
+ },
+ "system": "drone system 2579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57424513743396,
+ 38.467472441215186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2580",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2580 accessories"
+ }
+ },
+ "system": "drone system 2580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5367431161926,
+ 38.499619499328766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2581",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2581 accessories"
+ }
+ },
+ "system": "drone system 2581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33327054038081,
+ 38.74342368841329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2582",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2582 accessories"
+ }
+ },
+ "system": "drone system 2582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62138284808807,
+ 39.53539370839379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2583",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2583 accessories"
+ }
+ },
+ "system": "drone system 2583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.14308681275544,
+ 38.870166499352145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2584",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2584 accessories"
+ }
+ },
+ "system": "drone system 2584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01029990060684,
+ 39.25781905236771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2585",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2585 accessories"
+ }
+ },
+ "system": "drone system 2585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21939949819408,
+ 38.394024215313024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2586",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2586 accessories"
+ }
+ },
+ "system": "drone system 2586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46706091501252,
+ 38.17435995470533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2587",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2587 accessories"
+ }
+ },
+ "system": "drone system 2587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90283554897535,
+ 39.77361548105722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2588",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2588 accessories"
+ }
+ },
+ "system": "drone system 2588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52834129123505,
+ 38.674697869790414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2589",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2589 accessories"
+ }
+ },
+ "system": "drone system 2589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78993466885827,
+ 38.698880136149995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2590",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2590 accessories"
+ }
+ },
+ "system": "drone system 2590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27660180415434,
+ 38.2399936322433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2591",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2591 accessories"
+ }
+ },
+ "system": "drone system 2591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91989397795948,
+ 38.582370164401446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2592",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2592 accessories"
+ }
+ },
+ "system": "drone system 2592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9126219393205,
+ 39.614127503979155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2593",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2593 accessories"
+ }
+ },
+ "system": "drone system 2593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29950266819668,
+ 38.64206180657503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2594",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2594 accessories"
+ }
+ },
+ "system": "drone system 2594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31525793736051,
+ 38.59289050725354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2595",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2595 accessories"
+ }
+ },
+ "system": "drone system 2595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66011358765638,
+ 38.32667492514067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2596",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2596 accessories"
+ }
+ },
+ "system": "drone system 2596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73032503597685,
+ 38.642723425228425
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2597",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2597 accessories"
+ }
+ },
+ "system": "drone system 2597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53128643310221,
+ 39.5173918387089
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2598",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2598 accessories"
+ }
+ },
+ "system": "drone system 2598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16126889613935,
+ 38.84768713162659
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2599",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2599 accessories"
+ }
+ },
+ "system": "drone system 2599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81093218921536,
+ 38.1875734939644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2600",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2600 accessories"
+ }
+ },
+ "system": "drone system 2600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18473427375616,
+ 39.37503189206454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2601",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2601 accessories"
+ }
+ },
+ "system": "drone system 2601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57326856074336,
+ 38.877338117816755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2602",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2602 accessories"
+ }
+ },
+ "system": "drone system 2602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46742032224839,
+ 39.446227432290335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2603",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2603 accessories"
+ }
+ },
+ "system": "drone system 2603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90074238303055,
+ 38.25135481182981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2604",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2604 accessories"
+ }
+ },
+ "system": "drone system 2604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29777523103938,
+ 39.687344867622755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2605",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2605 accessories"
+ }
+ },
+ "system": "drone system 2605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05113896927746,
+ 39.741297719417155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2606",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2606 accessories"
+ }
+ },
+ "system": "drone system 2606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07054850150338,
+ 39.765561697982754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2607",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2607 accessories"
+ }
+ },
+ "system": "drone system 2607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58106613644154,
+ 39.183424209222615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2608",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2608 accessories"
+ }
+ },
+ "system": "drone system 2608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59772642377122,
+ 39.35375284024938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2609",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2609 accessories"
+ }
+ },
+ "system": "drone system 2609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10273894232482,
+ 39.69258138881075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2610",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2610 accessories"
+ }
+ },
+ "system": "drone system 2610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14326334836429,
+ 38.620435058235145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2611",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2611 accessories"
+ }
+ },
+ "system": "drone system 2611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32401218604511,
+ 39.56696183113277
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2612",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2612 accessories"
+ }
+ },
+ "system": "drone system 2612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81726148664693,
+ 38.96529742137807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2613",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2613 accessories"
+ }
+ },
+ "system": "drone system 2613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95666105046907,
+ 39.351751540876016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2614",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2614 accessories"
+ }
+ },
+ "system": "drone system 2614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23194284152136,
+ 39.368571494465655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2615",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2615 accessories"
+ }
+ },
+ "system": "drone system 2615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76079022071409,
+ 39.6725050321645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2616",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2616 accessories"
+ }
+ },
+ "system": "drone system 2616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3682796962643,
+ 38.70897665954556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2617",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2617 accessories"
+ }
+ },
+ "system": "drone system 2617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2972315914174,
+ 39.47196918413514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2618",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2618 accessories"
+ }
+ },
+ "system": "drone system 2618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50807543134367,
+ 38.61972647230824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2619",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2619 accessories"
+ }
+ },
+ "system": "drone system 2619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57595626192902,
+ 39.08844717485706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2620",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2620 accessories"
+ }
+ },
+ "system": "drone system 2620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90474862224846,
+ 38.732204357819036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2621",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2621 accessories"
+ }
+ },
+ "system": "drone system 2621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7807430798407,
+ 38.27886033431973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2622",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2622 accessories"
+ }
+ },
+ "system": "drone system 2622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52548006041332,
+ 38.625206102532964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2623",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2623 accessories"
+ }
+ },
+ "system": "drone system 2623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08321009249593,
+ 39.78311847500172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2624",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2624 accessories"
+ }
+ },
+ "system": "drone system 2624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20750738246407,
+ 39.45809347946697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2625",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2625 accessories"
+ }
+ },
+ "system": "drone system 2625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58521227403796,
+ 39.0679743821505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2626",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2626 accessories"
+ }
+ },
+ "system": "drone system 2626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65962685394975,
+ 39.17625831491598
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2627",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2627 accessories"
+ }
+ },
+ "system": "drone system 2627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0402622478936,
+ 39.014872659851456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2628",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2628 accessories"
+ }
+ },
+ "system": "drone system 2628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54251619392807,
+ 39.391922624052604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2629",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2629 accessories"
+ }
+ },
+ "system": "drone system 2629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51038939177656,
+ 39.25933347132769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2630",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2630 accessories"
+ }
+ },
+ "system": "drone system 2630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10468721003927,
+ 39.786592515828055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2631",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2631 accessories"
+ }
+ },
+ "system": "drone system 2631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77855543079691,
+ 38.8289439099627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2632",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2632 accessories"
+ }
+ },
+ "system": "drone system 2632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84314378347281,
+ 38.56214469425485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2633",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2633 accessories"
+ }
+ },
+ "system": "drone system 2633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74935723335227,
+ 38.36161100715891
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2634",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2634 accessories"
+ }
+ },
+ "system": "drone system 2634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94485834316492,
+ 38.792131254308345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2635",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2635 accessories"
+ }
+ },
+ "system": "drone system 2635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3329892127769,
+ 39.023735445539245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2636",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2636 accessories"
+ }
+ },
+ "system": "drone system 2636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81862758901096,
+ 39.30925910615967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2637",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2637 accessories"
+ }
+ },
+ "system": "drone system 2637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65832118555043,
+ 39.382188596286476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2638",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2638 accessories"
+ }
+ },
+ "system": "drone system 2638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15118925325706,
+ 38.02905211262489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2639",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2639 accessories"
+ }
+ },
+ "system": "drone system 2639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03225098281811,
+ 39.585915698968755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2640",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2640 accessories"
+ }
+ },
+ "system": "drone system 2640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67035871433808,
+ 38.11553328552523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2641",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2641 accessories"
+ }
+ },
+ "system": "drone system 2641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63391967336686,
+ 38.18280442969259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2642",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2642 accessories"
+ }
+ },
+ "system": "drone system 2642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74855893034517,
+ 39.14697412443728
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2643",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2643 accessories"
+ }
+ },
+ "system": "drone system 2643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24281132443507,
+ 38.60027537276504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2644",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2644 accessories"
+ }
+ },
+ "system": "drone system 2644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0393684535629,
+ 38.71767718866799
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2645",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2645 accessories"
+ }
+ },
+ "system": "drone system 2645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57807176727263,
+ 39.1904154605897
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2646",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2646 accessories"
+ }
+ },
+ "system": "drone system 2646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16676151139238,
+ 38.667536315468816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2647",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2647 accessories"
+ }
+ },
+ "system": "drone system 2647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49650345535792,
+ 39.34852159487079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2648",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2648 accessories"
+ }
+ },
+ "system": "drone system 2648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45693887642673,
+ 38.85313643193257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2649",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2649 accessories"
+ }
+ },
+ "system": "drone system 2649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88316191208826,
+ 38.786325667830674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2650",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2650 accessories"
+ }
+ },
+ "system": "drone system 2650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65682203970023,
+ 38.95334556141448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2651",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2651 accessories"
+ }
+ },
+ "system": "drone system 2651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8270975287368,
+ 38.84624388299659
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2652",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2652 accessories"
+ }
+ },
+ "system": "drone system 2652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04918477596833,
+ 38.696539707623515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2653",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2653 accessories"
+ }
+ },
+ "system": "drone system 2653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66642931528345,
+ 38.40349059994628
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2654",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2654 accessories"
+ }
+ },
+ "system": "drone system 2654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16837921328664,
+ 38.4464028236977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2655",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2655 accessories"
+ }
+ },
+ "system": "drone system 2655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65084006196199,
+ 38.46850961379274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2656",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2656 accessories"
+ }
+ },
+ "system": "drone system 2656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22317945757867,
+ 38.827547090417504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2657",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2657 accessories"
+ }
+ },
+ "system": "drone system 2657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05040954558595,
+ 38.69026526187259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2658",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2658 accessories"
+ }
+ },
+ "system": "drone system 2658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21298225925554,
+ 39.328985819785856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2659",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2659 accessories"
+ }
+ },
+ "system": "drone system 2659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17221134993007,
+ 39.39654771725606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2660",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2660 accessories"
+ }
+ },
+ "system": "drone system 2660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21330815427046,
+ 38.616228716210976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2661",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2661 accessories"
+ }
+ },
+ "system": "drone system 2661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22469437537573,
+ 39.07258528493979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2662",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2662 accessories"
+ }
+ },
+ "system": "drone system 2662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65574611874285,
+ 38.726951492735594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2663",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2663 accessories"
+ }
+ },
+ "system": "drone system 2663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36304065092605,
+ 39.744356970743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2664",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2664 accessories"
+ }
+ },
+ "system": "drone system 2664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45121947495934,
+ 39.19257853652394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2665",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2665 accessories"
+ }
+ },
+ "system": "drone system 2665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18269405071013,
+ 38.45522753870142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2666",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2666 accessories"
+ }
+ },
+ "system": "drone system 2666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0912660737379,
+ 39.50420497307938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2667",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2667 accessories"
+ }
+ },
+ "system": "drone system 2667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47770397650635,
+ 38.93700738785472
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2668",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2668 accessories"
+ }
+ },
+ "system": "drone system 2668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50662146741308,
+ 38.91642932903865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2669",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2669 accessories"
+ }
+ },
+ "system": "drone system 2669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56391743525901,
+ 39.135823461611224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2670",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2670 accessories"
+ }
+ },
+ "system": "drone system 2670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91733065311855,
+ 38.87920019968635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2671",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2671 accessories"
+ }
+ },
+ "system": "drone system 2671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27904368363573,
+ 38.343506095887555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2672",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2672 accessories"
+ }
+ },
+ "system": "drone system 2672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2687619488717,
+ 38.196978972370744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2673",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2673 accessories"
+ }
+ },
+ "system": "drone system 2673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81713276097035,
+ 39.53564848798895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2674",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2674 accessories"
+ }
+ },
+ "system": "drone system 2674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53113106344662,
+ 39.360208725245755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2675",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2675 accessories"
+ }
+ },
+ "system": "drone system 2675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22829032274015,
+ 38.53665802883892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2676",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2676 accessories"
+ }
+ },
+ "system": "drone system 2676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22959539907639,
+ 38.802384316332784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2677",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2677 accessories"
+ }
+ },
+ "system": "drone system 2677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30491179615956,
+ 38.93245709569606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2678",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2678 accessories"
+ }
+ },
+ "system": "drone system 2678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41700014619158,
+ 39.49103143762589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2679",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2679 accessories"
+ }
+ },
+ "system": "drone system 2679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4953261435774,
+ 38.250654532200535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2680",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2680 accessories"
+ }
+ },
+ "system": "drone system 2680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55285782770207,
+ 39.62093113966966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2681",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2681 accessories"
+ }
+ },
+ "system": "drone system 2681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49284022068726,
+ 39.15196719726848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2682",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2682 accessories"
+ }
+ },
+ "system": "drone system 2682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08422723961583,
+ 38.44078724727931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2683",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2683 accessories"
+ }
+ },
+ "system": "drone system 2683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55947186124021,
+ 38.78742633957744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2684",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2684 accessories"
+ }
+ },
+ "system": "drone system 2684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97887336243265,
+ 38.1585229425703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2685",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2685 accessories"
+ }
+ },
+ "system": "drone system 2685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85937764428635,
+ 38.08320643570276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2686",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2686 accessories"
+ }
+ },
+ "system": "drone system 2686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39468276011996,
+ 38.83433175576724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2687",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2687 accessories"
+ }
+ },
+ "system": "drone system 2687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90644628716461,
+ 38.672642100897775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2688",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2688 accessories"
+ }
+ },
+ "system": "drone system 2688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91832523981162,
+ 39.60068032324139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2689",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2689 accessories"
+ }
+ },
+ "system": "drone system 2689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14874852008519,
+ 38.75734452112349
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2690",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2690 accessories"
+ }
+ },
+ "system": "drone system 2690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17721930705952,
+ 38.78030121758731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2691",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2691 accessories"
+ }
+ },
+ "system": "drone system 2691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72033126527289,
+ 39.5586859431618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2692",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2692 accessories"
+ }
+ },
+ "system": "drone system 2692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52560060305639,
+ 38.587658279589085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2693",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2693 accessories"
+ }
+ },
+ "system": "drone system 2693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42197449636113,
+ 39.47673314611522
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2694",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2694 accessories"
+ }
+ },
+ "system": "drone system 2694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63512133347926,
+ 38.75230466172247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2695",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2695 accessories"
+ }
+ },
+ "system": "drone system 2695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05895525857176,
+ 38.90597983276336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2696",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2696 accessories"
+ }
+ },
+ "system": "drone system 2696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77227240008487,
+ 39.01444030981947
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2697",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2697 accessories"
+ }
+ },
+ "system": "drone system 2697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14813286039467,
+ 39.09512234610911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2698",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2698 accessories"
+ }
+ },
+ "system": "drone system 2698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17396035449944,
+ 38.117858291227776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2699",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2699 accessories"
+ }
+ },
+ "system": "drone system 2699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48125341018554,
+ 38.942784878472104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2700",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2700 accessories"
+ }
+ },
+ "system": "drone system 2700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17430058327005,
+ 38.719268519335685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2701",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2701 accessories"
+ }
+ },
+ "system": "drone system 2701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30700769846274,
+ 38.80631007588558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2702",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2702 accessories"
+ }
+ },
+ "system": "drone system 2702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47022886907041,
+ 39.23012745459631
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2703",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2703 accessories"
+ }
+ },
+ "system": "drone system 2703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21683233198588,
+ 38.73896228007245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2704",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2704 accessories"
+ }
+ },
+ "system": "drone system 2704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12727659483846,
+ 39.42036248197129
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2705",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2705 accessories"
+ }
+ },
+ "system": "drone system 2705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45778175005988,
+ 39.178054754006475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2706",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2706 accessories"
+ }
+ },
+ "system": "drone system 2706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26494179848686,
+ 39.26539402972189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2707",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2707 accessories"
+ }
+ },
+ "system": "drone system 2707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17099505548723,
+ 39.255323447423415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2708",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2708 accessories"
+ }
+ },
+ "system": "drone system 2708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53747824494454,
+ 38.61385353490902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2709",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2709 accessories"
+ }
+ },
+ "system": "drone system 2709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66844828329968,
+ 39.56016448185889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2710",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2710 accessories"
+ }
+ },
+ "system": "drone system 2710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97629383086056,
+ 38.754148851785814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2711",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2711 accessories"
+ }
+ },
+ "system": "drone system 2711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5749746909713,
+ 39.31043325293452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2712",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2712 accessories"
+ }
+ },
+ "system": "drone system 2712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9311514532464,
+ 38.75582390318277
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2713",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2713 accessories"
+ }
+ },
+ "system": "drone system 2713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6688122473273,
+ 38.26942344026976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2714",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2714 accessories"
+ }
+ },
+ "system": "drone system 2714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36070792101997,
+ 38.337535840903115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2715",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2715 accessories"
+ }
+ },
+ "system": "drone system 2715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64458636703706,
+ 39.45113248860721
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2716",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2716 accessories"
+ }
+ },
+ "system": "drone system 2716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6011784093947,
+ 38.75161929560059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2717",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2717 accessories"
+ }
+ },
+ "system": "drone system 2717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63444126125285,
+ 38.75452372700352
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2718",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2718 accessories"
+ }
+ },
+ "system": "drone system 2718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74831133878209,
+ 39.45885274378593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2719",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2719 accessories"
+ }
+ },
+ "system": "drone system 2719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37282754779099,
+ 39.17413327468387
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2720",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2720 accessories"
+ }
+ },
+ "system": "drone system 2720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30109865035757,
+ 38.334323236831416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2721",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2721 accessories"
+ }
+ },
+ "system": "drone system 2721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30717537299628,
+ 39.144679127999986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2722",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2722 accessories"
+ }
+ },
+ "system": "drone system 2722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24907129235172,
+ 38.98637593550951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2723",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2723 accessories"
+ }
+ },
+ "system": "drone system 2723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4589567882322,
+ 38.40963035811118
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2724",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2724 accessories"
+ }
+ },
+ "system": "drone system 2724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53544487923918,
+ 39.39225037511558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2725",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2725 accessories"
+ }
+ },
+ "system": "drone system 2725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60792120661672,
+ 39.418667217416655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2726",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2726 accessories"
+ }
+ },
+ "system": "drone system 2726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66476201258172,
+ 39.38959305579016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2727",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2727 accessories"
+ }
+ },
+ "system": "drone system 2727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79211179414558,
+ 38.60583494661136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2728",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2728 accessories"
+ }
+ },
+ "system": "drone system 2728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36925889701297,
+ 39.04871894133947
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2729",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2729 accessories"
+ }
+ },
+ "system": "drone system 2729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4852723485165,
+ 38.769906125913145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2730",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2730 accessories"
+ }
+ },
+ "system": "drone system 2730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78710683423355,
+ 39.23034276025237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2731",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2731 accessories"
+ }
+ },
+ "system": "drone system 2731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71801137753242,
+ 39.35095376519092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2732",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2732 accessories"
+ }
+ },
+ "system": "drone system 2732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83727123705218,
+ 38.96136166510096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2733",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2733 accessories"
+ }
+ },
+ "system": "drone system 2733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01127522692317,
+ 39.01210376956405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2734",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2734 accessories"
+ }
+ },
+ "system": "drone system 2734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2172543174012,
+ 39.04021863587377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2735",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2735 accessories"
+ }
+ },
+ "system": "drone system 2735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19675341128129,
+ 38.498867211737135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2736",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2736 accessories"
+ }
+ },
+ "system": "drone system 2736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88403805910683,
+ 38.70343190818581
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2737",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2737 accessories"
+ }
+ },
+ "system": "drone system 2737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41494414333852,
+ 39.464237893037016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2738",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2738 accessories"
+ }
+ },
+ "system": "drone system 2738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22557559313927,
+ 38.90338206465369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2739",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2739 accessories"
+ }
+ },
+ "system": "drone system 2739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35112533718825,
+ 39.01836287377204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2740",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2740 accessories"
+ }
+ },
+ "system": "drone system 2740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61254420085953,
+ 38.24965098417812
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2741",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2741 accessories"
+ }
+ },
+ "system": "drone system 2741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90334153430621,
+ 38.84444179293738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2742",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2742 accessories"
+ }
+ },
+ "system": "drone system 2742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45434056568718,
+ 38.34942998156911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2743",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2743 accessories"
+ }
+ },
+ "system": "drone system 2743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90397221557757,
+ 38.790887301435575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2744",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2744 accessories"
+ }
+ },
+ "system": "drone system 2744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61203717742535,
+ 39.46396358762213
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2745",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2745 accessories"
+ }
+ },
+ "system": "drone system 2745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32714065270837,
+ 38.985943887344604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2746",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2746 accessories"
+ }
+ },
+ "system": "drone system 2746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36154283289552,
+ 39.289756332655806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2747",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2747 accessories"
+ }
+ },
+ "system": "drone system 2747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52718712895931,
+ 39.13365440765428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2748",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2748 accessories"
+ }
+ },
+ "system": "drone system 2748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7102791326596,
+ 39.24874026294517
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2749",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2749 accessories"
+ }
+ },
+ "system": "drone system 2749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60731513237687,
+ 38.70131406524468
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2750",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2750 accessories"
+ }
+ },
+ "system": "drone system 2750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10986483951865,
+ 38.884632987307796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2751",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2751 accessories"
+ }
+ },
+ "system": "drone system 2751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09595389726516,
+ 38.24652589755045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2752",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2752 accessories"
+ }
+ },
+ "system": "drone system 2752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76384251890144,
+ 38.4176486342566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2753",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2753 accessories"
+ }
+ },
+ "system": "drone system 2753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07709340601433,
+ 38.914778386915195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2754",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2754 accessories"
+ }
+ },
+ "system": "drone system 2754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59962280717201,
+ 39.16530355561363
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2755",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2755 accessories"
+ }
+ },
+ "system": "drone system 2755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3246792168021,
+ 39.25677636778856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2756",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2756 accessories"
+ }
+ },
+ "system": "drone system 2756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64830531844262,
+ 38.560395227730105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2757",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2757 accessories"
+ }
+ },
+ "system": "drone system 2757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55663219353305,
+ 39.082026480680796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2758",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2758 accessories"
+ }
+ },
+ "system": "drone system 2758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16820245563699,
+ 39.56858221302604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2759",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2759 accessories"
+ }
+ },
+ "system": "drone system 2759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04324230505236,
+ 39.72270414916263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2760",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2760 accessories"
+ }
+ },
+ "system": "drone system 2760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27108975873084,
+ 39.278403417685084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2761",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2761 accessories"
+ }
+ },
+ "system": "drone system 2761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27723642921681,
+ 39.34762187042042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2762",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2762 accessories"
+ }
+ },
+ "system": "drone system 2762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52314136305856,
+ 39.12503263874984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2763",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2763 accessories"
+ }
+ },
+ "system": "drone system 2763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20174263283215,
+ 38.81024789558191
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2764",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2764 accessories"
+ }
+ },
+ "system": "drone system 2764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83913979155682,
+ 38.861519431046446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2765",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2765 accessories"
+ }
+ },
+ "system": "drone system 2765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5897747348465,
+ 39.5048134472698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2766",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2766 accessories"
+ }
+ },
+ "system": "drone system 2766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38441882505268,
+ 38.78539260358229
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2767",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2767 accessories"
+ }
+ },
+ "system": "drone system 2767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7054440491499,
+ 38.537583160519745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2768",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2768 accessories"
+ }
+ },
+ "system": "drone system 2768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5193240422871,
+ 38.74695407284223
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2769",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2769 accessories"
+ }
+ },
+ "system": "drone system 2769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.815310145494,
+ 38.09320510449926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2770",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2770 accessories"
+ }
+ },
+ "system": "drone system 2770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96410552588392,
+ 39.20212087770568
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2771",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2771 accessories"
+ }
+ },
+ "system": "drone system 2771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48638936189886,
+ 38.87610197556699
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2772",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2772 accessories"
+ }
+ },
+ "system": "drone system 2772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38863626064088,
+ 38.15565028171349
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2773 accessories"
+ }
+ },
+ "system": "drone system 2773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55104331358349,
+ 39.08025118257551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2774",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2774 accessories"
+ }
+ },
+ "system": "drone system 2774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18134072506524,
+ 38.11431140537616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2775",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2775 accessories"
+ }
+ },
+ "system": "drone system 2775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99596806065843,
+ 39.733540367033726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2776",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2776 accessories"
+ }
+ },
+ "system": "drone system 2776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86036154951877,
+ 39.17139553235523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2777",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2777 accessories"
+ }
+ },
+ "system": "drone system 2777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61157189417871,
+ 38.99870871438307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2778",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2778 accessories"
+ }
+ },
+ "system": "drone system 2778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06037069983905,
+ 38.43638370653589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2779",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2779 accessories"
+ }
+ },
+ "system": "drone system 2779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1674597095293,
+ 39.20974818052994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2780",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2780 accessories"
+ }
+ },
+ "system": "drone system 2780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18679789830932,
+ 39.229457950894634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2781",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2781 accessories"
+ }
+ },
+ "system": "drone system 2781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21728924654316,
+ 38.73273901346218
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2782",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2782 accessories"
+ }
+ },
+ "system": "drone system 2782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51698515883926,
+ 38.32701755610176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2783",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2783 accessories"
+ }
+ },
+ "system": "drone system 2783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88895928277759,
+ 38.0268094992771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2784",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2784 accessories"
+ }
+ },
+ "system": "drone system 2784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69280329376703,
+ 39.19580732220701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2785",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2785 accessories"
+ }
+ },
+ "system": "drone system 2785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70614452266346,
+ 38.772264686357445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2786",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2786 accessories"
+ }
+ },
+ "system": "drone system 2786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1872895342923,
+ 38.284678340526824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2787",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2787 accessories"
+ }
+ },
+ "system": "drone system 2787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17864933376741,
+ 39.50583542577458
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2788",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2788 accessories"
+ }
+ },
+ "system": "drone system 2788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05982717291263,
+ 38.0731520673303
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2789",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2789 accessories"
+ }
+ },
+ "system": "drone system 2789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9663688464331,
+ 38.434953877230825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2790",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2790 accessories"
+ }
+ },
+ "system": "drone system 2790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05754067691628,
+ 38.21836505046667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2791",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2791 accessories"
+ }
+ },
+ "system": "drone system 2791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74765684746482,
+ 38.41663318052175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2792",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2792 accessories"
+ }
+ },
+ "system": "drone system 2792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20440406744692,
+ 39.29794490742475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2793",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2793 accessories"
+ }
+ },
+ "system": "drone system 2793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90033293161623,
+ 39.120660793561704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2794",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2794 accessories"
+ }
+ },
+ "system": "drone system 2794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42030763566278,
+ 39.182702629925956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2795",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2795 accessories"
+ }
+ },
+ "system": "drone system 2795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41760396147771,
+ 39.23536907872853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2796",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2796 accessories"
+ }
+ },
+ "system": "drone system 2796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30731004165862,
+ 39.40289948585139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2797",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2797 accessories"
+ }
+ },
+ "system": "drone system 2797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05206745768679,
+ 38.703449470656274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2798",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2798 accessories"
+ }
+ },
+ "system": "drone system 2798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41573915036555,
+ 38.43256648622902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2799",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2799 accessories"
+ }
+ },
+ "system": "drone system 2799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51253794080648,
+ 39.03243557400411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2800",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2800 accessories"
+ }
+ },
+ "system": "drone system 2800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07667086367951,
+ 38.529186563427736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2801",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2801 accessories"
+ }
+ },
+ "system": "drone system 2801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40699228423837,
+ 39.3766617854328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2802",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2802 accessories"
+ }
+ },
+ "system": "drone system 2802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4334311560188,
+ 38.73836343107084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2803",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2803 accessories"
+ }
+ },
+ "system": "drone system 2803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34487147656618,
+ 39.659070175115666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2804",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2804 accessories"
+ }
+ },
+ "system": "drone system 2804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65867536529282,
+ 38.849579627727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2805",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2805 accessories"
+ }
+ },
+ "system": "drone system 2805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58810616379517,
+ 38.80774189111793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2806",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2806 accessories"
+ }
+ },
+ "system": "drone system 2806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81642009105376,
+ 38.8211971971389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2807",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2807 accessories"
+ }
+ },
+ "system": "drone system 2807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1040994161631,
+ 39.042116011846005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2808",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2808 accessories"
+ }
+ },
+ "system": "drone system 2808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03476244366675,
+ 38.19788954399807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2809",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2809 accessories"
+ }
+ },
+ "system": "drone system 2809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54636035599408,
+ 38.250641598542174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2810",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2810 accessories"
+ }
+ },
+ "system": "drone system 2810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8295350392217,
+ 39.21538165745599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2811",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2811 accessories"
+ }
+ },
+ "system": "drone system 2811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4675062059668,
+ 38.38667355802483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2812",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2812 accessories"
+ }
+ },
+ "system": "drone system 2812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53035509467361,
+ 38.86464241456213
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2813",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2813 accessories"
+ }
+ },
+ "system": "drone system 2813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43459605128811,
+ 38.89469218873103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2814",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2814 accessories"
+ }
+ },
+ "system": "drone system 2814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02127458783427,
+ 38.80507012283949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2815",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2815 accessories"
+ }
+ },
+ "system": "drone system 2815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51786790040059,
+ 39.00236446092148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2816",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2816 accessories"
+ }
+ },
+ "system": "drone system 2816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22011201352348,
+ 39.53485429801859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2817",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2817 accessories"
+ }
+ },
+ "system": "drone system 2817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09609453599384,
+ 38.37301589416171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2818",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2818 accessories"
+ }
+ },
+ "system": "drone system 2818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3875432027631,
+ 38.67239407494381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2819",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2819 accessories"
+ }
+ },
+ "system": "drone system 2819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92080840785194,
+ 39.67517123523773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2820",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2820 accessories"
+ }
+ },
+ "system": "drone system 2820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0277759203608,
+ 38.33586323278742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2821",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2821 accessories"
+ }
+ },
+ "system": "drone system 2821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01204130160733,
+ 39.06744519990831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2822",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2822 accessories"
+ }
+ },
+ "system": "drone system 2822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.423588761185,
+ 38.69513252853852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2823",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2823 accessories"
+ }
+ },
+ "system": "drone system 2823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49404073987122,
+ 39.637404080797985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2824",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2824 accessories"
+ }
+ },
+ "system": "drone system 2824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29140409563458,
+ 39.0814915832017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2825",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2825 accessories"
+ }
+ },
+ "system": "drone system 2825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94498036932471,
+ 39.38350443306465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2826",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2826 accessories"
+ }
+ },
+ "system": "drone system 2826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29502926517728,
+ 39.27466710165434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2827",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2827 accessories"
+ }
+ },
+ "system": "drone system 2827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0896938254877,
+ 39.72825155166262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2828",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2828 accessories"
+ }
+ },
+ "system": "drone system 2828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06510296152862,
+ 39.30269629846451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2829",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2829 accessories"
+ }
+ },
+ "system": "drone system 2829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86954942483415,
+ 38.15484943041394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2830",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2830 accessories"
+ }
+ },
+ "system": "drone system 2830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65062365912766,
+ 39.152395009163826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2831",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2831 accessories"
+ }
+ },
+ "system": "drone system 2831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18175970275584,
+ 38.772232480084554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2832",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2832 accessories"
+ }
+ },
+ "system": "drone system 2832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76314383612444,
+ 38.262628705430686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2833",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2833 accessories"
+ }
+ },
+ "system": "drone system 2833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67849335902869,
+ 39.478624271545826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2834",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2834 accessories"
+ }
+ },
+ "system": "drone system 2834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33516119918613,
+ 39.12887691620111
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2835",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2835 accessories"
+ }
+ },
+ "system": "drone system 2835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53005753137222,
+ 38.56797741996001
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2836",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2836 accessories"
+ }
+ },
+ "system": "drone system 2836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4806248368635,
+ 39.11063242010461
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2837",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2837 accessories"
+ }
+ },
+ "system": "drone system 2837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22110197691957,
+ 39.11255742930141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2838",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2838 accessories"
+ }
+ },
+ "system": "drone system 2838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74877986144791,
+ 38.99987793641529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2839",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2839 accessories"
+ }
+ },
+ "system": "drone system 2839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47182163947399,
+ 39.01970997546012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2840",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2840 accessories"
+ }
+ },
+ "system": "drone system 2840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60036725091518,
+ 38.44144590684762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2841",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2841 accessories"
+ }
+ },
+ "system": "drone system 2841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52367296511422,
+ 38.56641148644198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2842",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2842 accessories"
+ }
+ },
+ "system": "drone system 2842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4756683284626,
+ 39.045150640128014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2843",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2843 accessories"
+ }
+ },
+ "system": "drone system 2843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52529028931652,
+ 39.391707766673186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2844",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2844 accessories"
+ }
+ },
+ "system": "drone system 2844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4299714395798,
+ 38.71200471978393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2845",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2845 accessories"
+ }
+ },
+ "system": "drone system 2845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29785883822677,
+ 38.63033314479041
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2846",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2846 accessories"
+ }
+ },
+ "system": "drone system 2846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84338442320012,
+ 38.50738056086018
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2847",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2847 accessories"
+ }
+ },
+ "system": "drone system 2847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68355131918506,
+ 39.133289582275296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2848",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2848 accessories"
+ }
+ },
+ "system": "drone system 2848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16989373178782,
+ 39.739395229458104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2849",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2849 accessories"
+ }
+ },
+ "system": "drone system 2849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30578879192863,
+ 38.887568279313186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2850",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2850 accessories"
+ }
+ },
+ "system": "drone system 2850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76520506309613,
+ 38.84152784971934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2851",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2851 accessories"
+ }
+ },
+ "system": "drone system 2851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1612334553708,
+ 38.35116129901696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2852",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2852 accessories"
+ }
+ },
+ "system": "drone system 2852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5344795044035,
+ 39.315490871975356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2853",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2853 accessories"
+ }
+ },
+ "system": "drone system 2853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04714430440534,
+ 39.33334527060521
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2854",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2854 accessories"
+ }
+ },
+ "system": "drone system 2854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07182523372387,
+ 39.77874498453253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2855",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2855 accessories"
+ }
+ },
+ "system": "drone system 2855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86404941047246,
+ 38.95027742987354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2856",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2856 accessories"
+ }
+ },
+ "system": "drone system 2856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09630455281184,
+ 38.07448243707004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2857",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2857 accessories"
+ }
+ },
+ "system": "drone system 2857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57927206626896,
+ 39.04330076649789
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2858",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2858 accessories"
+ }
+ },
+ "system": "drone system 2858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60640082646434,
+ 38.84952667793704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2859",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2859 accessories"
+ }
+ },
+ "system": "drone system 2859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49035434986291,
+ 38.973473482347266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2860",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2860 accessories"
+ }
+ },
+ "system": "drone system 2860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60095333561482,
+ 39.349275279329774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2861",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2861 accessories"
+ }
+ },
+ "system": "drone system 2861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38686984140278,
+ 38.84431917173534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2862",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2862 accessories"
+ }
+ },
+ "system": "drone system 2862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67129770850741,
+ 39.20222085803616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2863",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2863 accessories"
+ }
+ },
+ "system": "drone system 2863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05090191627376,
+ 39.56898641098894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2864",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2864 accessories"
+ }
+ },
+ "system": "drone system 2864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5222311562233,
+ 39.28799195984644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2865",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2865 accessories"
+ }
+ },
+ "system": "drone system 2865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70745284692646,
+ 38.47491020596529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2866",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2866 accessories"
+ }
+ },
+ "system": "drone system 2866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98908311636542,
+ 38.70848046141743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2867",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2867 accessories"
+ }
+ },
+ "system": "drone system 2867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06434927470121,
+ 38.527468259000294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2868",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2868 accessories"
+ }
+ },
+ "system": "drone system 2868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75336869488793,
+ 39.351447010451714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2869",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2869 accessories"
+ }
+ },
+ "system": "drone system 2869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25482337431104,
+ 39.69697509625448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2870",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2870 accessories"
+ }
+ },
+ "system": "drone system 2870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74184766462336,
+ 38.11577189685797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2871",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2871 accessories"
+ }
+ },
+ "system": "drone system 2871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62123462296542,
+ 39.64393965630957
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2872",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2872 accessories"
+ }
+ },
+ "system": "drone system 2872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50281563357676,
+ 38.780529961211464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2873",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2873 accessories"
+ }
+ },
+ "system": "drone system 2873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.457234254305,
+ 39.14363864777414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2874",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2874 accessories"
+ }
+ },
+ "system": "drone system 2874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36731376145421,
+ 38.31464052581846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2875",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2875 accessories"
+ }
+ },
+ "system": "drone system 2875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25138458876573,
+ 38.48570127338401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2876",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2876 accessories"
+ }
+ },
+ "system": "drone system 2876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16168375085017,
+ 39.47626401883584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2877",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2877 accessories"
+ }
+ },
+ "system": "drone system 2877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48800968525785,
+ 39.40622126518759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2878",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2878 accessories"
+ }
+ },
+ "system": "drone system 2878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1598449069571,
+ 38.7089929886904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2879",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2879 accessories"
+ }
+ },
+ "system": "drone system 2879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04127449628294,
+ 39.443963064766294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2880",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2880 accessories"
+ }
+ },
+ "system": "drone system 2880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82381493274012,
+ 38.64486668803179
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2881 accessories"
+ }
+ },
+ "system": "drone system 2881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00660337889578,
+ 39.69362512071156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2882",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2882 accessories"
+ }
+ },
+ "system": "drone system 2882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43452648653216,
+ 39.26535500534762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2883",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2883 accessories"
+ }
+ },
+ "system": "drone system 2883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23432888557096,
+ 38.559690794225226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2884",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2884 accessories"
+ }
+ },
+ "system": "drone system 2884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38274492209123,
+ 38.81573975137301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2885",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2885 accessories"
+ }
+ },
+ "system": "drone system 2885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61536843183906,
+ 38.88627692431974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2886",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2886 accessories"
+ }
+ },
+ "system": "drone system 2886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50398306192643,
+ 38.42557430280112
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2887",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2887 accessories"
+ }
+ },
+ "system": "drone system 2887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32654670799784,
+ 38.84248331515442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2888",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2888 accessories"
+ }
+ },
+ "system": "drone system 2888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40247248578814,
+ 38.64061632006673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2889",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2889 accessories"
+ }
+ },
+ "system": "drone system 2889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30829292827319,
+ 39.0320228729385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2890",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2890 accessories"
+ }
+ },
+ "system": "drone system 2890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19202036112851,
+ 39.062769847662075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2891",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2891 accessories"
+ }
+ },
+ "system": "drone system 2891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44391407104416,
+ 38.26312375252708
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2892",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2892 accessories"
+ }
+ },
+ "system": "drone system 2892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31357046404948,
+ 39.16545298343467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2893",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2893 accessories"
+ }
+ },
+ "system": "drone system 2893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46235433066042,
+ 38.35278561335924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2894",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2894 accessories"
+ }
+ },
+ "system": "drone system 2894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64057361053051,
+ 39.58594208920428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2895",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2895 accessories"
+ }
+ },
+ "system": "drone system 2895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2240273535113,
+ 38.90674404220281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2896",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2896 accessories"
+ }
+ },
+ "system": "drone system 2896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2836581531776,
+ 38.75066776454689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2897",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2897 accessories"
+ }
+ },
+ "system": "drone system 2897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87286427375231,
+ 38.42875626247951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2898",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2898 accessories"
+ }
+ },
+ "system": "drone system 2898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36921797078355,
+ 39.393439339797766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2899",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2899 accessories"
+ }
+ },
+ "system": "drone system 2899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0784515906755,
+ 38.39452195994375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2900",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2900 accessories"
+ }
+ },
+ "system": "drone system 2900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9209082142369,
+ 38.32747412295027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2901",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2901 accessories"
+ }
+ },
+ "system": "drone system 2901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47145276521661,
+ 38.85873799768603
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2902",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2902 accessories"
+ }
+ },
+ "system": "drone system 2902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81238316058857,
+ 39.164771820160205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2903",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2903 accessories"
+ }
+ },
+ "system": "drone system 2903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06275147400837,
+ 38.52169662079675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2904",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2904 accessories"
+ }
+ },
+ "system": "drone system 2904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68960828440669,
+ 38.64103319024648
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2905",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2905 accessories"
+ }
+ },
+ "system": "drone system 2905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85057966559782,
+ 38.52359761525571
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2906",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2906 accessories"
+ }
+ },
+ "system": "drone system 2906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48070045707522,
+ 38.76983645837913
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2907",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2907 accessories"
+ }
+ },
+ "system": "drone system 2907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33645248225366,
+ 38.89599496768046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2908",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2908 accessories"
+ }
+ },
+ "system": "drone system 2908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61568209736882,
+ 38.92322180842613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2909",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2909 accessories"
+ }
+ },
+ "system": "drone system 2909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65787334420673,
+ 38.67080253863744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2910",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2910 accessories"
+ }
+ },
+ "system": "drone system 2910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50040507056463,
+ 39.20343957532452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2911",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2911 accessories"
+ }
+ },
+ "system": "drone system 2911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99949029951543,
+ 39.49060731413773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2912",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2912 accessories"
+ }
+ },
+ "system": "drone system 2912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09082330995103,
+ 38.640104406164355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2913",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2913 accessories"
+ }
+ },
+ "system": "drone system 2913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39857083065323,
+ 38.68986293888995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2914",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2914 accessories"
+ }
+ },
+ "system": "drone system 2914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90781407632305,
+ 38.78426031770438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2915",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2915 accessories"
+ }
+ },
+ "system": "drone system 2915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.561408451644,
+ 38.29730484975916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2916",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2916 accessories"
+ }
+ },
+ "system": "drone system 2916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4962665356055,
+ 39.48779933591842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2917",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2917 accessories"
+ }
+ },
+ "system": "drone system 2917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9286795920274,
+ 39.62722853781239
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2918",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2918 accessories"
+ }
+ },
+ "system": "drone system 2918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6420395730347,
+ 39.34815123761868
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2919",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2919 accessories"
+ }
+ },
+ "system": "drone system 2919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6172500210242,
+ 39.479536733426585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2920",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2920 accessories"
+ }
+ },
+ "system": "drone system 2920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97279988192889,
+ 38.63995562182231
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2921",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2921 accessories"
+ }
+ },
+ "system": "drone system 2921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78743464839759,
+ 38.38440069705172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2922",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2922 accessories"
+ }
+ },
+ "system": "drone system 2922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53681019689822,
+ 39.25078691382154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2923",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2923 accessories"
+ }
+ },
+ "system": "drone system 2923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66541176440197,
+ 39.39241051346019
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2924",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2924 accessories"
+ }
+ },
+ "system": "drone system 2924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48030634280461,
+ 38.997424630111745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2925",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2925 accessories"
+ }
+ },
+ "system": "drone system 2925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86814181977769,
+ 39.63557792843611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2926",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2926 accessories"
+ }
+ },
+ "system": "drone system 2926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93465180134012,
+ 38.560462872074176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2927",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2927 accessories"
+ }
+ },
+ "system": "drone system 2927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09024820857232,
+ 38.787414401916415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2928",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2928 accessories"
+ }
+ },
+ "system": "drone system 2928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96076923077912,
+ 39.07794644006004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2929",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2929 accessories"
+ }
+ },
+ "system": "drone system 2929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86662758046505,
+ 38.62799172522063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2930",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2930 accessories"
+ }
+ },
+ "system": "drone system 2930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2902807745305,
+ 38.188497788261024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2931",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2931 accessories"
+ }
+ },
+ "system": "drone system 2931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48079775922456,
+ 39.54170131659396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2932",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2932 accessories"
+ }
+ },
+ "system": "drone system 2932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78924656776643,
+ 38.32117554239504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2933",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2933 accessories"
+ }
+ },
+ "system": "drone system 2933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94836385315308,
+ 39.79750321296733
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2934",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2934 accessories"
+ }
+ },
+ "system": "drone system 2934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97754527955085,
+ 38.202167271702
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2935",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2935 accessories"
+ }
+ },
+ "system": "drone system 2935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75413764073625,
+ 38.12467805511199
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2936",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2936 accessories"
+ }
+ },
+ "system": "drone system 2936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.321117655191,
+ 38.650477925634306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2937",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2937 accessories"
+ }
+ },
+ "system": "drone system 2937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99986478935946,
+ 39.16454989644419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2938",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2938 accessories"
+ }
+ },
+ "system": "drone system 2938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61816587339597,
+ 39.44641922302964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2939",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2939 accessories"
+ }
+ },
+ "system": "drone system 2939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1057446904006,
+ 39.62685065580775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2940",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2940 accessories"
+ }
+ },
+ "system": "drone system 2940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88649990860928,
+ 38.88827303415953
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2941",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2941 accessories"
+ }
+ },
+ "system": "drone system 2941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8706934751907,
+ 38.07242491405444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2942",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2942 accessories"
+ }
+ },
+ "system": "drone system 2942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67614338735252,
+ 39.55423485129297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2943",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2943 accessories"
+ }
+ },
+ "system": "drone system 2943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81336208902272,
+ 38.69829883954106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2944",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2944 accessories"
+ }
+ },
+ "system": "drone system 2944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37224520306674,
+ 39.28344495687116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2945",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2945 accessories"
+ }
+ },
+ "system": "drone system 2945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02466369530524,
+ 39.17347929672326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2946",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2946 accessories"
+ }
+ },
+ "system": "drone system 2946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28029963631728,
+ 38.84701625430921
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2947",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2947 accessories"
+ }
+ },
+ "system": "drone system 2947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67011828047029,
+ 38.36624055244542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2948",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2948 accessories"
+ }
+ },
+ "system": "drone system 2948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62078760747147,
+ 38.93004795080538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2949",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2949 accessories"
+ }
+ },
+ "system": "drone system 2949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5080898434893,
+ 39.101554296462986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2950",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2950 accessories"
+ }
+ },
+ "system": "drone system 2950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44707825985562,
+ 39.24938997878085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2951",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2951 accessories"
+ }
+ },
+ "system": "drone system 2951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38175996988566,
+ 38.28251754131226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2952",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2952 accessories"
+ }
+ },
+ "system": "drone system 2952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09855875823389,
+ 38.03648755196657
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2953",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2953 accessories"
+ }
+ },
+ "system": "drone system 2953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43248190281128,
+ 39.04866823191139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2954",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2954 accessories"
+ }
+ },
+ "system": "drone system 2954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38331096108675,
+ 38.73458199744118
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2955",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2955 accessories"
+ }
+ },
+ "system": "drone system 2955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28232836050998,
+ 39.736801959171984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2956",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2956 accessories"
+ }
+ },
+ "system": "drone system 2956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.342667458343,
+ 39.22084387500658
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2957",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2957 accessories"
+ }
+ },
+ "system": "drone system 2957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53225221367921,
+ 38.98213548237743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2958",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2958 accessories"
+ }
+ },
+ "system": "drone system 2958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48272149832552,
+ 38.84536655753503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2959",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2959 accessories"
+ }
+ },
+ "system": "drone system 2959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42836812132886,
+ 39.39418810466779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2960",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2960 accessories"
+ }
+ },
+ "system": "drone system 2960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15313424227455,
+ 38.66172895722773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2961",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2961 accessories"
+ }
+ },
+ "system": "drone system 2961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0720598319514,
+ 38.037236351634064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2962",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2962 accessories"
+ }
+ },
+ "system": "drone system 2962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55710073494136,
+ 38.98962781771209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2963",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2963 accessories"
+ }
+ },
+ "system": "drone system 2963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65475214583367,
+ 38.62958801167196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2964",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2964 accessories"
+ }
+ },
+ "system": "drone system 2964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66912379566875,
+ 39.44798911524382
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2965",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2965 accessories"
+ }
+ },
+ "system": "drone system 2965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14465911547548,
+ 38.86201458994068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2966",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2966 accessories"
+ }
+ },
+ "system": "drone system 2966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17367887902255,
+ 38.85980559710026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2967",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2967 accessories"
+ }
+ },
+ "system": "drone system 2967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63420815991971,
+ 39.37899888456004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2968",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2968 accessories"
+ }
+ },
+ "system": "drone system 2968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69902182659175,
+ 38.463524505987884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2969",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2969 accessories"
+ }
+ },
+ "system": "drone system 2969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62569929810158,
+ 38.69053050051844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2970",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2970 accessories"
+ }
+ },
+ "system": "drone system 2970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87424972400262,
+ 38.959152239972596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2971",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2971 accessories"
+ }
+ },
+ "system": "drone system 2971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05439888772139,
+ 39.29062284420779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2972",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2972 accessories"
+ }
+ },
+ "system": "drone system 2972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1084074955576,
+ 39.6705372807408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2973",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2973 accessories"
+ }
+ },
+ "system": "drone system 2973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38183782178363,
+ 39.39366606848831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2974",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2974 accessories"
+ }
+ },
+ "system": "drone system 2974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34079424922228,
+ 39.29111328827089
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2975",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2975 accessories"
+ }
+ },
+ "system": "drone system 2975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97911452633737,
+ 39.44174686073124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2976",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2976 accessories"
+ }
+ },
+ "system": "drone system 2976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17558961188887,
+ 38.266182181843895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2977",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2977 accessories"
+ }
+ },
+ "system": "drone system 2977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60023798691618,
+ 38.41737945886971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2978",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2978 accessories"
+ }
+ },
+ "system": "drone system 2978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42019793918045,
+ 38.11496950606785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2979",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2979 accessories"
+ }
+ },
+ "system": "drone system 2979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.464937595668,
+ 38.93167896184085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2980",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2980 accessories"
+ }
+ },
+ "system": "drone system 2980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44044689668719,
+ 38.43264434718604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2981",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2981 accessories"
+ }
+ },
+ "system": "drone system 2981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52601287187899,
+ 38.445772833601765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2982",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2982 accessories"
+ }
+ },
+ "system": "drone system 2982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71298388676252,
+ 38.83724869663657
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2983",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2983 accessories"
+ }
+ },
+ "system": "drone system 2983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82164701709229,
+ 39.289781270596784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2984",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2984 accessories"
+ }
+ },
+ "system": "drone system 2984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82115497290519,
+ 38.936030313337326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2985",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2985 accessories"
+ }
+ },
+ "system": "drone system 2985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41667167386753,
+ 38.724879453556944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2986",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2986 accessories"
+ }
+ },
+ "system": "drone system 2986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31613459623614,
+ 38.872394083041094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2987",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2987 accessories"
+ }
+ },
+ "system": "drone system 2987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53646951151698,
+ 38.95800220825445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2988",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2988 accessories"
+ }
+ },
+ "system": "drone system 2988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12743167126584,
+ 39.3452038517468
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2989",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2989 accessories"
+ }
+ },
+ "system": "drone system 2989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56041051601402,
+ 38.26527043461858
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2990",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2990 accessories"
+ }
+ },
+ "system": "drone system 2990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3505347554929,
+ 39.41783354442422
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2991",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2991 accessories"
+ }
+ },
+ "system": "drone system 2991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60722851880259,
+ 38.93768548442918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2992",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2992 accessories"
+ }
+ },
+ "system": "drone system 2992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78311788601386,
+ 39.378671730292474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2993",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2993 accessories"
+ }
+ },
+ "system": "drone system 2993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19791288365845,
+ 38.695190106316645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2994",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2994 accessories"
+ }
+ },
+ "system": "drone system 2994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43351174725638,
+ 38.51089218228207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2995",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2995 accessories"
+ }
+ },
+ "system": "drone system 2995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80583398722504,
+ 38.49830206207711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2996",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2996 accessories"
+ }
+ },
+ "system": "drone system 2996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31246357182259,
+ 39.42008302540732
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2997",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2997 accessories"
+ }
+ },
+ "system": "drone system 2997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8809049552592,
+ 38.99926234150033
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2998",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2998 accessories"
+ }
+ },
+ "system": "drone system 2998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26513245235441,
+ 39.259568829525136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone2999",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone2999 accessories"
+ }
+ },
+ "system": "drone system 2999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27165579236485,
+ 38.76851846994237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3000",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3000 accessories"
+ }
+ },
+ "system": "drone system 3000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51066569671255,
+ 39.114853439066486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3001",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3001 accessories"
+ }
+ },
+ "system": "drone system 3001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86799131646288,
+ 38.79409657417878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3002",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3002 accessories"
+ }
+ },
+ "system": "drone system 3002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49469965729033,
+ 38.57879071324673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3003",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3003 accessories"
+ }
+ },
+ "system": "drone system 3003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7364900198568,
+ 38.383328699799385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3004",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3004 accessories"
+ }
+ },
+ "system": "drone system 3004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50859840154723,
+ 39.562599705898386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3005",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3005 accessories"
+ }
+ },
+ "system": "drone system 3005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7141210144327,
+ 38.58326364943025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3006",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3006 accessories"
+ }
+ },
+ "system": "drone system 3006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35176406698619,
+ 38.84049827725013
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3007",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3007 accessories"
+ }
+ },
+ "system": "drone system 3007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83800822589465,
+ 38.21544285697506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3008",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3008 accessories"
+ }
+ },
+ "system": "drone system 3008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78320426143114,
+ 38.981356179419556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3009",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3009 accessories"
+ }
+ },
+ "system": "drone system 3009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47299934531192,
+ 38.32848717252454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3010",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3010 accessories"
+ }
+ },
+ "system": "drone system 3010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45517573607755,
+ 38.662869658458646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3011",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3011 accessories"
+ }
+ },
+ "system": "drone system 3011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61130392462645,
+ 39.62395900569355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3012",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3012 accessories"
+ }
+ },
+ "system": "drone system 3012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26317216925543,
+ 39.673722001976486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3013",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3013 accessories"
+ }
+ },
+ "system": "drone system 3013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94780516060365,
+ 38.43595111129445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3014",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3014 accessories"
+ }
+ },
+ "system": "drone system 3014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43947597166323,
+ 38.66986511710654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3015",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3015 accessories"
+ }
+ },
+ "system": "drone system 3015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7824513036628,
+ 39.352149116943934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3016",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3016 accessories"
+ }
+ },
+ "system": "drone system 3016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33989798792204,
+ 39.11924907500162
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3017",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3017 accessories"
+ }
+ },
+ "system": "drone system 3017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11784339136405,
+ 39.08657609591364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3018",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3018 accessories"
+ }
+ },
+ "system": "drone system 3018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85847985383562,
+ 38.44037735333655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3019",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3019 accessories"
+ }
+ },
+ "system": "drone system 3019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60406112855176,
+ 38.83511421757213
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3020",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3020 accessories"
+ }
+ },
+ "system": "drone system 3020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09674649404435,
+ 38.13116591546501
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3021",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3021 accessories"
+ }
+ },
+ "system": "drone system 3021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4034254282095,
+ 38.57516432041696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3022",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3022 accessories"
+ }
+ },
+ "system": "drone system 3022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.804553732395,
+ 39.494701322919106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3023",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3023 accessories"
+ }
+ },
+ "system": "drone system 3023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89763676662793,
+ 39.129211843293696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3024",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3024 accessories"
+ }
+ },
+ "system": "drone system 3024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55448384236352,
+ 39.48335488976639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3025",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3025 accessories"
+ }
+ },
+ "system": "drone system 3025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01380739587358,
+ 38.212804395466286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3026",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3026 accessories"
+ }
+ },
+ "system": "drone system 3026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99235072641007,
+ 38.38200037305649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3027",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3027 accessories"
+ }
+ },
+ "system": "drone system 3027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80990300240393,
+ 38.5181579715745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3028",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3028 accessories"
+ }
+ },
+ "system": "drone system 3028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98608265603202,
+ 39.68685979960692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3029",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3029 accessories"
+ }
+ },
+ "system": "drone system 3029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40823238468997,
+ 39.50194313425928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3030",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3030 accessories"
+ }
+ },
+ "system": "drone system 3030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50795064941579,
+ 38.88043823666277
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3031",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3031 accessories"
+ }
+ },
+ "system": "drone system 3031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7498524926359,
+ 39.656453807191745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3032",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3032 accessories"
+ }
+ },
+ "system": "drone system 3032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64183322524882,
+ 38.61192785993508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3033",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3033 accessories"
+ }
+ },
+ "system": "drone system 3033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31414908316187,
+ 38.63844255443013
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3034",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3034 accessories"
+ }
+ },
+ "system": "drone system 3034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58989804800856,
+ 39.253830679112276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3035",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3035 accessories"
+ }
+ },
+ "system": "drone system 3035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18438954724522,
+ 39.02397781757762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3036",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3036 accessories"
+ }
+ },
+ "system": "drone system 3036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51958354816553,
+ 38.805067717244576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3037",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3037 accessories"
+ }
+ },
+ "system": "drone system 3037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73637058334019,
+ 38.10035123066857
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3038",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3038 accessories"
+ }
+ },
+ "system": "drone system 3038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64628637585656,
+ 38.10016254871888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3039",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3039 accessories"
+ }
+ },
+ "system": "drone system 3039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83308695851608,
+ 39.43866557406715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3040",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3040 accessories"
+ }
+ },
+ "system": "drone system 3040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91294964750861,
+ 38.98368735251582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3041",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3041 accessories"
+ }
+ },
+ "system": "drone system 3041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89330689488901,
+ 38.93011737815651
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3042",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3042 accessories"
+ }
+ },
+ "system": "drone system 3042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68063403340103,
+ 38.256678946221015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3043",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3043 accessories"
+ }
+ },
+ "system": "drone system 3043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3053622847634,
+ 38.84956454758135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3044",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3044 accessories"
+ }
+ },
+ "system": "drone system 3044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9282478642505,
+ 39.64205926413301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3045",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3045 accessories"
+ }
+ },
+ "system": "drone system 3045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38047446148072,
+ 39.0912552134404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3046",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3046 accessories"
+ }
+ },
+ "system": "drone system 3046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37143056649577,
+ 39.270171557024355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3047",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3047 accessories"
+ }
+ },
+ "system": "drone system 3047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46359396163682,
+ 38.73874701614505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3048",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3048 accessories"
+ }
+ },
+ "system": "drone system 3048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27662946374029,
+ 38.35642552308034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3049",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3049 accessories"
+ }
+ },
+ "system": "drone system 3049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36767738068464,
+ 38.42074866305582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3050",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3050 accessories"
+ }
+ },
+ "system": "drone system 3050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41782210939428,
+ 38.266205564178826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3051",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3051 accessories"
+ }
+ },
+ "system": "drone system 3051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2870885639096,
+ 38.78218322254274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3052",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3052 accessories"
+ }
+ },
+ "system": "drone system 3052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90568597229138,
+ 38.9634635683865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3053",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3053 accessories"
+ }
+ },
+ "system": "drone system 3053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19854458616076,
+ 39.71155692150735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3054",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3054 accessories"
+ }
+ },
+ "system": "drone system 3054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28341396332111,
+ 38.72556878231196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3055",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3055 accessories"
+ }
+ },
+ "system": "drone system 3055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53722763694822,
+ 38.94205359281284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3056",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3056 accessories"
+ }
+ },
+ "system": "drone system 3056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17429551181164,
+ 38.78863943279578
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3057",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3057 accessories"
+ }
+ },
+ "system": "drone system 3057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90285917693397,
+ 38.045587340053764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3058",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3058 accessories"
+ }
+ },
+ "system": "drone system 3058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84388313054868,
+ 38.514199166704714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3059",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3059 accessories"
+ }
+ },
+ "system": "drone system 3059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62004313049053,
+ 38.54105517188302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3060",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3060 accessories"
+ }
+ },
+ "system": "drone system 3060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37564021738667,
+ 39.4125552489715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3061",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3061 accessories"
+ }
+ },
+ "system": "drone system 3061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57211014796609,
+ 39.34956652340259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3062",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3062 accessories"
+ }
+ },
+ "system": "drone system 3062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89418796956467,
+ 38.89870711769998
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3063",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3063 accessories"
+ }
+ },
+ "system": "drone system 3063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2164008384009,
+ 38.91380884446529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3064",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3064 accessories"
+ }
+ },
+ "system": "drone system 3064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86360406575533,
+ 39.6098641797812
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3065",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3065 accessories"
+ }
+ },
+ "system": "drone system 3065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28824159343156,
+ 38.86661228628509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3066",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3066 accessories"
+ }
+ },
+ "system": "drone system 3066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29091530342433,
+ 38.57226934736914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3067",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3067 accessories"
+ }
+ },
+ "system": "drone system 3067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43104671836339,
+ 39.535127767004184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3068",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3068 accessories"
+ }
+ },
+ "system": "drone system 3068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65064072949872,
+ 39.529266870634565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3069",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3069 accessories"
+ }
+ },
+ "system": "drone system 3069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6808870017553,
+ 38.67697373961278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3070",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3070 accessories"
+ }
+ },
+ "system": "drone system 3070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07213862866588,
+ 38.918021731240856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3071",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3071 accessories"
+ }
+ },
+ "system": "drone system 3071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52581304324822,
+ 39.01537240667392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3072",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3072 accessories"
+ }
+ },
+ "system": "drone system 3072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7768865228408,
+ 39.15241461012277
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3073",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3073 accessories"
+ }
+ },
+ "system": "drone system 3073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1714654271596,
+ 39.6637766657559
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3074",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3074 accessories"
+ }
+ },
+ "system": "drone system 3074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44968381708055,
+ 38.298765509445474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3075",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3075 accessories"
+ }
+ },
+ "system": "drone system 3075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27813302342538,
+ 38.37888060191861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3076",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3076 accessories"
+ }
+ },
+ "system": "drone system 3076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5350276977301,
+ 38.4776388159173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3077",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3077 accessories"
+ }
+ },
+ "system": "drone system 3077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27260071969441,
+ 38.95033658250034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3078",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3078 accessories"
+ }
+ },
+ "system": "drone system 3078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19204031389222,
+ 38.88639598300477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3079",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3079 accessories"
+ }
+ },
+ "system": "drone system 3079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39623184005971,
+ 39.59021169913832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3080",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3080 accessories"
+ }
+ },
+ "system": "drone system 3080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85109682585234,
+ 39.39828761228265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3081",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3081 accessories"
+ }
+ },
+ "system": "drone system 3081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69107732910972,
+ 39.272601642851
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3082",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3082 accessories"
+ }
+ },
+ "system": "drone system 3082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53483138530564,
+ 38.243829219701375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3083",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3083 accessories"
+ }
+ },
+ "system": "drone system 3083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06509863877343,
+ 39.51993001059029
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3084",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3084 accessories"
+ }
+ },
+ "system": "drone system 3084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84173454849439,
+ 38.90424533668417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3085",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3085 accessories"
+ }
+ },
+ "system": "drone system 3085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90007555899652,
+ 38.31765831395113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3086",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3086 accessories"
+ }
+ },
+ "system": "drone system 3086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84047880183228,
+ 38.55691383906581
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3087",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3087 accessories"
+ }
+ },
+ "system": "drone system 3087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70315682384258,
+ 38.42301681941256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3088",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3088 accessories"
+ }
+ },
+ "system": "drone system 3088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19067573496261,
+ 38.33894690657061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3089",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3089 accessories"
+ }
+ },
+ "system": "drone system 3089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18126413346106,
+ 39.23508447719978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3090",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3090 accessories"
+ }
+ },
+ "system": "drone system 3090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69900934826548,
+ 38.86271597417295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3091",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3091 accessories"
+ }
+ },
+ "system": "drone system 3091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54057024395983,
+ 38.779351562757775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3092",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3092 accessories"
+ }
+ },
+ "system": "drone system 3092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23254997761224,
+ 38.072203592587705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3093",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3093 accessories"
+ }
+ },
+ "system": "drone system 3093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40128075928585,
+ 39.064895849809275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3094",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3094 accessories"
+ }
+ },
+ "system": "drone system 3094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46634579366163,
+ 39.32480030561373
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3095",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3095 accessories"
+ }
+ },
+ "system": "drone system 3095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76436979676656,
+ 39.033684913065215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3096",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3096 accessories"
+ }
+ },
+ "system": "drone system 3096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39594306706226,
+ 38.460693734314695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3097",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3097 accessories"
+ }
+ },
+ "system": "drone system 3097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03930032783279,
+ 38.0498481900204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3098",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3098 accessories"
+ }
+ },
+ "system": "drone system 3098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82089453231954,
+ 38.89968284444706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3099",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3099 accessories"
+ }
+ },
+ "system": "drone system 3099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56257902843687,
+ 38.71296968889778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3100",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3100 accessories"
+ }
+ },
+ "system": "drone system 3100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34597234774087,
+ 39.13697998848936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3101",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3101 accessories"
+ }
+ },
+ "system": "drone system 3101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33507851898351,
+ 38.65353195186256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3102",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3102 accessories"
+ }
+ },
+ "system": "drone system 3102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6074237513891,
+ 39.07857680832225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3103",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3103 accessories"
+ }
+ },
+ "system": "drone system 3103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61087429000227,
+ 39.4461461845204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3104",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3104 accessories"
+ }
+ },
+ "system": "drone system 3104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80645287810987,
+ 38.721596166584455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3105",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3105 accessories"
+ }
+ },
+ "system": "drone system 3105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.866661703735,
+ 39.013984654835376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3106",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3106 accessories"
+ }
+ },
+ "system": "drone system 3106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11313274523124,
+ 39.610663484242295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3107",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3107 accessories"
+ }
+ },
+ "system": "drone system 3107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89377666462039,
+ 38.5919345855342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3108",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3108 accessories"
+ }
+ },
+ "system": "drone system 3108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24888968076465,
+ 38.2343856352316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3109",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3109 accessories"
+ }
+ },
+ "system": "drone system 3109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72153829647,
+ 38.14492927733815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3110",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3110 accessories"
+ }
+ },
+ "system": "drone system 3110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84270525035068,
+ 39.33389762907781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3111",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3111 accessories"
+ }
+ },
+ "system": "drone system 3111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42880205560293,
+ 38.87817453652392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3112",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3112 accessories"
+ }
+ },
+ "system": "drone system 3112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81572895239081,
+ 39.650413290637324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3113",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3113 accessories"
+ }
+ },
+ "system": "drone system 3113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38115230993297,
+ 38.2933516306056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3114",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3114 accessories"
+ }
+ },
+ "system": "drone system 3114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78855154764098,
+ 38.79769923035152
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3115",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3115 accessories"
+ }
+ },
+ "system": "drone system 3115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16016521099442,
+ 39.458078705667454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3116",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3116 accessories"
+ }
+ },
+ "system": "drone system 3116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21784051256066,
+ 38.991139332899415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3117",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3117 accessories"
+ }
+ },
+ "system": "drone system 3117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36902943309872,
+ 39.545062658578686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3118",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3118 accessories"
+ }
+ },
+ "system": "drone system 3118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86854426561817,
+ 39.33226255652111
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3119",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3119 accessories"
+ }
+ },
+ "system": "drone system 3119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56598463122818,
+ 38.78793593492484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3120",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3120 accessories"
+ }
+ },
+ "system": "drone system 3120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69953496738918,
+ 38.76016804544366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3121",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3121 accessories"
+ }
+ },
+ "system": "drone system 3121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80291955667133,
+ 38.80001720895859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3122",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3122 accessories"
+ }
+ },
+ "system": "drone system 3122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7204213970682,
+ 39.40082776337391
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3123",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3123 accessories"
+ }
+ },
+ "system": "drone system 3123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06479192371542,
+ 38.99353223756188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3124",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3124 accessories"
+ }
+ },
+ "system": "drone system 3124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31385220931018,
+ 38.85017196233816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3125",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3125 accessories"
+ }
+ },
+ "system": "drone system 3125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24945244962763,
+ 39.17928554189265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3126",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3126 accessories"
+ }
+ },
+ "system": "drone system 3126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89637936767873,
+ 38.31237684811424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3127",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3127 accessories"
+ }
+ },
+ "system": "drone system 3127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28642363436907,
+ 38.22288467489748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3128",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3128 accessories"
+ }
+ },
+ "system": "drone system 3128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41610409191061,
+ 39.109895390061816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3129",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3129 accessories"
+ }
+ },
+ "system": "drone system 3129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31178805373926,
+ 38.086645416096594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3130",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3130 accessories"
+ }
+ },
+ "system": "drone system 3130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02061956576475,
+ 39.131610809013296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3131",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3131 accessories"
+ }
+ },
+ "system": "drone system 3131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24722545689023,
+ 39.58209245992545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3132",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3132 accessories"
+ }
+ },
+ "system": "drone system 3132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3530998863623,
+ 39.052840907195694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3133",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3133 accessories"
+ }
+ },
+ "system": "drone system 3133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07563327502284,
+ 38.40304105245479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3134",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3134 accessories"
+ }
+ },
+ "system": "drone system 3134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58634109209268,
+ 39.63510865105795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3135",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3135 accessories"
+ }
+ },
+ "system": "drone system 3135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50174603915097,
+ 38.85733447975514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3136",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3136 accessories"
+ }
+ },
+ "system": "drone system 3136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7508771103691,
+ 38.86581668390793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3137",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3137 accessories"
+ }
+ },
+ "system": "drone system 3137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49818866397193,
+ 38.98332309446005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3138",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3138 accessories"
+ }
+ },
+ "system": "drone system 3138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07387703047647,
+ 39.77422072058064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3139",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3139 accessories"
+ }
+ },
+ "system": "drone system 3139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55198369079955,
+ 38.357395695198896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3140",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3140 accessories"
+ }
+ },
+ "system": "drone system 3140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05786699521313,
+ 38.962669359114585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3141",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3141 accessories"
+ }
+ },
+ "system": "drone system 3141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26239270904055,
+ 39.51828760929441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3142",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3142 accessories"
+ }
+ },
+ "system": "drone system 3142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5081006872196,
+ 39.62576226018791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3143",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3143 accessories"
+ }
+ },
+ "system": "drone system 3143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28690484891771,
+ 39.37529942394558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3144",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3144 accessories"
+ }
+ },
+ "system": "drone system 3144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93066625727907,
+ 39.03708563715455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3145",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3145 accessories"
+ }
+ },
+ "system": "drone system 3145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64152608257454,
+ 39.32725549054354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3146",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3146 accessories"
+ }
+ },
+ "system": "drone system 3146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.732680526187,
+ 38.79532352472599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3147",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3147 accessories"
+ }
+ },
+ "system": "drone system 3147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36665168405234,
+ 39.05860527572314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3148",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3148 accessories"
+ }
+ },
+ "system": "drone system 3148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25679572874151,
+ 39.6071302098207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3149",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3149 accessories"
+ }
+ },
+ "system": "drone system 3149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44463601378989,
+ 39.6415292993467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3150",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3150 accessories"
+ }
+ },
+ "system": "drone system 3150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84786632323653,
+ 38.65017087985778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3151",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3151 accessories"
+ }
+ },
+ "system": "drone system 3151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76722688605945,
+ 38.43172128178413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3152",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3152 accessories"
+ }
+ },
+ "system": "drone system 3152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8600057726467,
+ 39.74238922170226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3153",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3153 accessories"
+ }
+ },
+ "system": "drone system 3153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62434914826846,
+ 38.6542464770394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3154",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3154 accessories"
+ }
+ },
+ "system": "drone system 3154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96499288108434,
+ 38.405316206752204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3155",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3155 accessories"
+ }
+ },
+ "system": "drone system 3155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40148705136814,
+ 38.882884622699606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3156",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3156 accessories"
+ }
+ },
+ "system": "drone system 3156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31496085135738,
+ 39.24023226728188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3157",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3157 accessories"
+ }
+ },
+ "system": "drone system 3157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87965846769224,
+ 39.39987496824196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3158",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3158 accessories"
+ }
+ },
+ "system": "drone system 3158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56536856855642,
+ 39.241418289359736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3159",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3159 accessories"
+ }
+ },
+ "system": "drone system 3159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14027573963087,
+ 39.389156548319654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3160",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3160 accessories"
+ }
+ },
+ "system": "drone system 3160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2447248625241,
+ 38.19887371327176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3161",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3161 accessories"
+ }
+ },
+ "system": "drone system 3161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60957192148402,
+ 38.519884788036386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3162",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3162 accessories"
+ }
+ },
+ "system": "drone system 3162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03196326592186,
+ 38.19259216243743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3163",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3163 accessories"
+ }
+ },
+ "system": "drone system 3163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02144782170701,
+ 39.76274709323027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3164",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3164 accessories"
+ }
+ },
+ "system": "drone system 3164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53296247581673,
+ 39.508957587067215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3165",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3165 accessories"
+ }
+ },
+ "system": "drone system 3165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6173731661209,
+ 38.50595820616844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3166",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3166 accessories"
+ }
+ },
+ "system": "drone system 3166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23095804937479,
+ 39.5972835343633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3167",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3167 accessories"
+ }
+ },
+ "system": "drone system 3167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35615867595102,
+ 39.70582580098155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3168",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3168 accessories"
+ }
+ },
+ "system": "drone system 3168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9378106128892,
+ 39.38165414854735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3169",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3169 accessories"
+ }
+ },
+ "system": "drone system 3169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85908709440191,
+ 38.57854638190449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3170",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3170 accessories"
+ }
+ },
+ "system": "drone system 3170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33109102851057,
+ 38.37805256638974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3171",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3171 accessories"
+ }
+ },
+ "system": "drone system 3171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31585559935246,
+ 38.39203136342305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3172",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3172 accessories"
+ }
+ },
+ "system": "drone system 3172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49123195116167,
+ 39.063835445582676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3173",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3173 accessories"
+ }
+ },
+ "system": "drone system 3173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50040982371294,
+ 38.4291784802689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3174",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3174 accessories"
+ }
+ },
+ "system": "drone system 3174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39508956302076,
+ 39.594979901662235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3175",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3175 accessories"
+ }
+ },
+ "system": "drone system 3175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88563910885199,
+ 39.735315619221836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3176",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3176 accessories"
+ }
+ },
+ "system": "drone system 3176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5223952395078,
+ 39.4276839935388
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3177",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3177 accessories"
+ }
+ },
+ "system": "drone system 3177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17916875140853,
+ 39.10530525053551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3178",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3178 accessories"
+ }
+ },
+ "system": "drone system 3178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61021283307396,
+ 38.646826701755856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3179 accessories"
+ }
+ },
+ "system": "drone system 3179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30160826915741,
+ 38.622941338826024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3180",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3180 accessories"
+ }
+ },
+ "system": "drone system 3180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6109528734653,
+ 38.727262122633384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3181",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3181 accessories"
+ }
+ },
+ "system": "drone system 3181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63115619428338,
+ 38.60550631754567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3182",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3182 accessories"
+ }
+ },
+ "system": "drone system 3182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85128015294912,
+ 38.483391860148124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3183",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3183 accessories"
+ }
+ },
+ "system": "drone system 3183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20059485455295,
+ 38.35879092338313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3184",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3184 accessories"
+ }
+ },
+ "system": "drone system 3184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02735587509797,
+ 39.25016183319867
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3185",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3185 accessories"
+ }
+ },
+ "system": "drone system 3185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94531836250522,
+ 39.46510061007522
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3186",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3186 accessories"
+ }
+ },
+ "system": "drone system 3186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38733614631569,
+ 39.49248643950026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3187",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3187 accessories"
+ }
+ },
+ "system": "drone system 3187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23245327617204,
+ 38.34417820851395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3188",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3188 accessories"
+ }
+ },
+ "system": "drone system 3188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6172353859125,
+ 39.12979793421136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3189",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3189 accessories"
+ }
+ },
+ "system": "drone system 3189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27924257770324,
+ 39.36476117968746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3190 accessories"
+ }
+ },
+ "system": "drone system 3190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56193486936364,
+ 38.49085498599802
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3191",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3191 accessories"
+ }
+ },
+ "system": "drone system 3191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2053106093768,
+ 38.360686653606514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3192",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3192 accessories"
+ }
+ },
+ "system": "drone system 3192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46704259122814,
+ 39.265937561126414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3193",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3193 accessories"
+ }
+ },
+ "system": "drone system 3193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74617403824539,
+ 39.13684848900797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3194",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3194 accessories"
+ }
+ },
+ "system": "drone system 3194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86578541330843,
+ 38.95380115731155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3195",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3195 accessories"
+ }
+ },
+ "system": "drone system 3195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32393789964196,
+ 39.41320715055331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3196",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3196 accessories"
+ }
+ },
+ "system": "drone system 3196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06721784433392,
+ 39.29659735941658
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3197",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3197 accessories"
+ }
+ },
+ "system": "drone system 3197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41382348748267,
+ 39.585308739629674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3198",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3198 accessories"
+ }
+ },
+ "system": "drone system 3198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37171558572462,
+ 38.08939376675762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3199",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3199 accessories"
+ }
+ },
+ "system": "drone system 3199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72821529764046,
+ 39.63042197331293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3200",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3200 accessories"
+ }
+ },
+ "system": "drone system 3200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58389123466951,
+ 38.6660763268765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3201",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3201 accessories"
+ }
+ },
+ "system": "drone system 3201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28497914373948,
+ 39.12056616779728
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3202",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3202 accessories"
+ }
+ },
+ "system": "drone system 3202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65246316508073,
+ 39.12342778820251
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3203",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3203 accessories"
+ }
+ },
+ "system": "drone system 3203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2662944176492,
+ 39.36113352213355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3204",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3204 accessories"
+ }
+ },
+ "system": "drone system 3204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05643545952823,
+ 38.71052958146372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3205",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3205 accessories"
+ }
+ },
+ "system": "drone system 3205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29816468034109,
+ 39.1447012183352
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3206",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3206 accessories"
+ }
+ },
+ "system": "drone system 3206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93608649925663,
+ 39.358134793081305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3207",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3207 accessories"
+ }
+ },
+ "system": "drone system 3207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09298846649992,
+ 39.29430267921268
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3208",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3208 accessories"
+ }
+ },
+ "system": "drone system 3208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5468670626308,
+ 38.68376054832461
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3209",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3209 accessories"
+ }
+ },
+ "system": "drone system 3209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94970351371049,
+ 39.54265450009233
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3210",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3210 accessories"
+ }
+ },
+ "system": "drone system 3210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1384167043803,
+ 39.193171344548915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3211",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3211 accessories"
+ }
+ },
+ "system": "drone system 3211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92951717789472,
+ 38.59005260673517
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3212",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3212 accessories"
+ }
+ },
+ "system": "drone system 3212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09499484812542,
+ 38.044231508456704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3213",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3213 accessories"
+ }
+ },
+ "system": "drone system 3213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59709573119233,
+ 39.40446817764822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3214",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3214 accessories"
+ }
+ },
+ "system": "drone system 3214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4798110406348,
+ 38.22108803774952
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3215",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3215 accessories"
+ }
+ },
+ "system": "drone system 3215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86330066284113,
+ 39.22616158316553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3216",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3216 accessories"
+ }
+ },
+ "system": "drone system 3216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42201604626803,
+ 38.705831924443416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3217",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3217 accessories"
+ }
+ },
+ "system": "drone system 3217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22509731886959,
+ 38.594082389933206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3218",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3218 accessories"
+ }
+ },
+ "system": "drone system 3218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6218541653803,
+ 38.42791682078163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3219",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3219 accessories"
+ }
+ },
+ "system": "drone system 3219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95373955759626,
+ 39.18613899246405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3220",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3220 accessories"
+ }
+ },
+ "system": "drone system 3220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3171266406001,
+ 39.22847281152807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3221",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3221 accessories"
+ }
+ },
+ "system": "drone system 3221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47984855787347,
+ 38.86742797026284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3222",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3222 accessories"
+ }
+ },
+ "system": "drone system 3222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3679054109784,
+ 38.40875130630608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3223",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3223 accessories"
+ }
+ },
+ "system": "drone system 3223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59781209489083,
+ 38.462742207730905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3224",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3224 accessories"
+ }
+ },
+ "system": "drone system 3224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60226896178702,
+ 38.51786277482813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3225 accessories"
+ }
+ },
+ "system": "drone system 3225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47102447374219,
+ 38.35919115509026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3226",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3226 accessories"
+ }
+ },
+ "system": "drone system 3226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65397201203776,
+ 39.138012027829895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3227",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3227 accessories"
+ }
+ },
+ "system": "drone system 3227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18131387648769,
+ 39.32118476844467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3228",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3228 accessories"
+ }
+ },
+ "system": "drone system 3228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27027008852271,
+ 38.97374154835326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3229",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3229 accessories"
+ }
+ },
+ "system": "drone system 3229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7033436336904,
+ 39.042250770904275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3230",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3230 accessories"
+ }
+ },
+ "system": "drone system 3230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85363170918157,
+ 38.56738849561535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3231",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3231 accessories"
+ }
+ },
+ "system": "drone system 3231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01375173376562,
+ 39.49960696932276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3232",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3232 accessories"
+ }
+ },
+ "system": "drone system 3232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6603914097546,
+ 38.155343988293524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3233",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3233 accessories"
+ }
+ },
+ "system": "drone system 3233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46177164603057,
+ 38.48180536432675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3234",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3234 accessories"
+ }
+ },
+ "system": "drone system 3234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39776625969162,
+ 38.1563268015141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3235",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3235 accessories"
+ }
+ },
+ "system": "drone system 3235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61464259309197,
+ 38.13536859588486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3236",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3236 accessories"
+ }
+ },
+ "system": "drone system 3236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88927267167381,
+ 38.08782008707446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3237",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3237 accessories"
+ }
+ },
+ "system": "drone system 3237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5085078314915,
+ 38.86890526447181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3238",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3238 accessories"
+ }
+ },
+ "system": "drone system 3238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57837701261526,
+ 38.82201544567768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3239 accessories"
+ }
+ },
+ "system": "drone system 3239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72541221985726,
+ 39.476628180238045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3240",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3240 accessories"
+ }
+ },
+ "system": "drone system 3240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46478462837366,
+ 39.241690457564864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3241",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3241 accessories"
+ }
+ },
+ "system": "drone system 3241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62414453251273,
+ 38.67510580067482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3242",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3242 accessories"
+ }
+ },
+ "system": "drone system 3242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01021830635463,
+ 39.560808653379944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3243",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3243 accessories"
+ }
+ },
+ "system": "drone system 3243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72367448370187,
+ 38.17056551172273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3244",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3244 accessories"
+ }
+ },
+ "system": "drone system 3244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3858713830249,
+ 38.55918200019274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3245",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3245 accessories"
+ }
+ },
+ "system": "drone system 3245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88270802386498,
+ 39.26296125113532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3246",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3246 accessories"
+ }
+ },
+ "system": "drone system 3246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28357185424338,
+ 38.52489479084869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3247",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3247 accessories"
+ }
+ },
+ "system": "drone system 3247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69439673630792,
+ 38.155883622525906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3248",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3248 accessories"
+ }
+ },
+ "system": "drone system 3248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87831629187907,
+ 38.82690387596407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3249",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3249 accessories"
+ }
+ },
+ "system": "drone system 3249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35303481862056,
+ 39.7021966669991
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3250",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3250 accessories"
+ }
+ },
+ "system": "drone system 3250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45461296510634,
+ 38.610317733595544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3251",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3251 accessories"
+ }
+ },
+ "system": "drone system 3251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41854739196918,
+ 38.57055995640479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3252",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3252 accessories"
+ }
+ },
+ "system": "drone system 3252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29401305244546,
+ 39.11038438407577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3253",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3253 accessories"
+ }
+ },
+ "system": "drone system 3253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92572941520142,
+ 39.112147396264284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3254",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3254 accessories"
+ }
+ },
+ "system": "drone system 3254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70931428519484,
+ 38.848944400641784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3255",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3255 accessories"
+ }
+ },
+ "system": "drone system 3255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86903100576045,
+ 38.73055024573725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3256",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3256 accessories"
+ }
+ },
+ "system": "drone system 3256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74934412233075,
+ 39.440120891359385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3257",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3257 accessories"
+ }
+ },
+ "system": "drone system 3257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5548680906033,
+ 39.28019447485788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3258",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3258 accessories"
+ }
+ },
+ "system": "drone system 3258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55079400349462,
+ 39.19460818918655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3259",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3259 accessories"
+ }
+ },
+ "system": "drone system 3259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22257016251133,
+ 38.21780787645499
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3260",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3260 accessories"
+ }
+ },
+ "system": "drone system 3260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37140724010447,
+ 38.54731175151503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3261",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3261 accessories"
+ }
+ },
+ "system": "drone system 3261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73470649610256,
+ 38.9395702053922
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3262",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3262 accessories"
+ }
+ },
+ "system": "drone system 3262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19758487739591,
+ 38.83450685284067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3263",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3263 accessories"
+ }
+ },
+ "system": "drone system 3263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33631915672454,
+ 39.14596245445203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3264",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3264 accessories"
+ }
+ },
+ "system": "drone system 3264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83821076075724,
+ 39.41876231737546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3265",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3265 accessories"
+ }
+ },
+ "system": "drone system 3265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58739024791234,
+ 38.148098171200736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3266",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3266 accessories"
+ }
+ },
+ "system": "drone system 3266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78527644622477,
+ 38.91860882116608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3267",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3267 accessories"
+ }
+ },
+ "system": "drone system 3267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55914142205421,
+ 38.71024870032728
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3268",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3268 accessories"
+ }
+ },
+ "system": "drone system 3268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50014745759233,
+ 38.522187294047086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3269",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3269 accessories"
+ }
+ },
+ "system": "drone system 3269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30800190248812,
+ 38.806326500155365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3270",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3270 accessories"
+ }
+ },
+ "system": "drone system 3270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56644783996705,
+ 38.982334414457576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3271",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3271 accessories"
+ }
+ },
+ "system": "drone system 3271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66317658741997,
+ 38.793745746462115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3272",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3272 accessories"
+ }
+ },
+ "system": "drone system 3272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53946283077153,
+ 38.97945276103634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3273",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3273 accessories"
+ }
+ },
+ "system": "drone system 3273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49642730972482,
+ 39.02658223124418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3274",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3274 accessories"
+ }
+ },
+ "system": "drone system 3274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20821824071447,
+ 39.54205560212058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3275",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3275 accessories"
+ }
+ },
+ "system": "drone system 3275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3840191231408,
+ 38.810758537957916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3276",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3276 accessories"
+ }
+ },
+ "system": "drone system 3276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20341221043246,
+ 39.23754111670368
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3277",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3277 accessories"
+ }
+ },
+ "system": "drone system 3277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37061690615522,
+ 39.47520267050324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3278",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3278 accessories"
+ }
+ },
+ "system": "drone system 3278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83526552864119,
+ 38.10664856260407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3279",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3279 accessories"
+ }
+ },
+ "system": "drone system 3279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20729934045607,
+ 38.73667988633853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3280",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3280 accessories"
+ }
+ },
+ "system": "drone system 3280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50712712287938,
+ 38.72247627851089
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3281",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3281 accessories"
+ }
+ },
+ "system": "drone system 3281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59612866375852,
+ 38.265628104170226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3282",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3282 accessories"
+ }
+ },
+ "system": "drone system 3282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67570495135196,
+ 38.31166101985462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3283",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3283 accessories"
+ }
+ },
+ "system": "drone system 3283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25724301631698,
+ 38.22202840455933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3284",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3284 accessories"
+ }
+ },
+ "system": "drone system 3284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.113007127705,
+ 38.23869311186756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3285",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3285 accessories"
+ }
+ },
+ "system": "drone system 3285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85212291628226,
+ 39.309322883687344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3286",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3286 accessories"
+ }
+ },
+ "system": "drone system 3286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53382233180936,
+ 38.40869816912806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3287",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3287 accessories"
+ }
+ },
+ "system": "drone system 3287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84846645569169,
+ 38.80012485827404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3288",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3288 accessories"
+ }
+ },
+ "system": "drone system 3288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49386300491834,
+ 39.05514665009724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3289",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3289 accessories"
+ }
+ },
+ "system": "drone system 3289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14645371709665,
+ 39.65482568905683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3290",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3290 accessories"
+ }
+ },
+ "system": "drone system 3290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.9294638270561,
+ 39.02789014073527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3291",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3291 accessories"
+ }
+ },
+ "system": "drone system 3291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2246105300646,
+ 38.638985399658026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3292",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3292 accessories"
+ }
+ },
+ "system": "drone system 3292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40890074705814,
+ 38.74214133245209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3293",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3293 accessories"
+ }
+ },
+ "system": "drone system 3293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2714745008354,
+ 38.99341585286689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3294",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3294 accessories"
+ }
+ },
+ "system": "drone system 3294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92886594335792,
+ 38.19014282589658
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3295",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3295 accessories"
+ }
+ },
+ "system": "drone system 3295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91186726374323,
+ 38.47153497281735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3296",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3296 accessories"
+ }
+ },
+ "system": "drone system 3296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51377791162513,
+ 38.19309744106267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3297",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3297 accessories"
+ }
+ },
+ "system": "drone system 3297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11631209961297,
+ 38.9914724206507
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3298",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3298 accessories"
+ }
+ },
+ "system": "drone system 3298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06375349022521,
+ 38.017428178424055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3299",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3299 accessories"
+ }
+ },
+ "system": "drone system 3299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83494795614138,
+ 39.43729407197049
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3300",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3300 accessories"
+ }
+ },
+ "system": "drone system 3300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75571891746192,
+ 39.15964550081773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3301",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3301 accessories"
+ }
+ },
+ "system": "drone system 3301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66044035994159,
+ 38.09978543214994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3302",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3302 accessories"
+ }
+ },
+ "system": "drone system 3302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02821385912304,
+ 39.05045435871198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3303",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3303 accessories"
+ }
+ },
+ "system": "drone system 3303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50955692474412,
+ 39.16053709339747
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3304",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3304 accessories"
+ }
+ },
+ "system": "drone system 3304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57179180792693,
+ 38.60041079228727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3305",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3305 accessories"
+ }
+ },
+ "system": "drone system 3305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84875711829072,
+ 39.37399061921302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3306",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3306 accessories"
+ }
+ },
+ "system": "drone system 3306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19766460837202,
+ 38.97170117423141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3307",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3307 accessories"
+ }
+ },
+ "system": "drone system 3307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43688281065509,
+ 38.90741764306242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3308",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3308 accessories"
+ }
+ },
+ "system": "drone system 3308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18232936811896,
+ 38.770378947849245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3309",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3309 accessories"
+ }
+ },
+ "system": "drone system 3309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35089957137531,
+ 39.67687019717731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3310",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3310 accessories"
+ }
+ },
+ "system": "drone system 3310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68435192190988,
+ 38.80840104171942
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3311",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3311 accessories"
+ }
+ },
+ "system": "drone system 3311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3331329219733,
+ 39.3317847057324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3312",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3312 accessories"
+ }
+ },
+ "system": "drone system 3312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66250162635714,
+ 39.02051825114297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3313 accessories"
+ }
+ },
+ "system": "drone system 3313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55165493182932,
+ 38.369785208187444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3314",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3314 accessories"
+ }
+ },
+ "system": "drone system 3314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84487552604871,
+ 38.71730627241463
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3315",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3315 accessories"
+ }
+ },
+ "system": "drone system 3315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62094954656874,
+ 38.8266942337425
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3316",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3316 accessories"
+ }
+ },
+ "system": "drone system 3316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03814846258959,
+ 38.34834076090996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3317",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3317 accessories"
+ }
+ },
+ "system": "drone system 3317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3495697092328,
+ 38.77263589089444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3318",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3318 accessories"
+ }
+ },
+ "system": "drone system 3318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9018399898737,
+ 39.08002540508132
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3319",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3319 accessories"
+ }
+ },
+ "system": "drone system 3319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51133446679096,
+ 39.05449490527794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3320",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3320 accessories"
+ }
+ },
+ "system": "drone system 3320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8206516835588,
+ 38.3915197430121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3321",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3321 accessories"
+ }
+ },
+ "system": "drone system 3321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24609320337413,
+ 38.40137142304906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3322",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3322 accessories"
+ }
+ },
+ "system": "drone system 3322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89969011211306,
+ 39.08965451135212
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3323",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3323 accessories"
+ }
+ },
+ "system": "drone system 3323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29438944324428,
+ 38.81536969678581
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3324",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3324 accessories"
+ }
+ },
+ "system": "drone system 3324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00950501569235,
+ 38.6866579217618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3325",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3325 accessories"
+ }
+ },
+ "system": "drone system 3325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87271018713358,
+ 39.1896308371786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3326",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3326 accessories"
+ }
+ },
+ "system": "drone system 3326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04718278928337,
+ 38.681383965200986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3327",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3327 accessories"
+ }
+ },
+ "system": "drone system 3327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25930926376199,
+ 38.72782954677496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3328",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3328 accessories"
+ }
+ },
+ "system": "drone system 3328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60893293725314,
+ 39.572248777746985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3329",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3329 accessories"
+ }
+ },
+ "system": "drone system 3329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2838216657986,
+ 38.787822134264665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3330",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3330 accessories"
+ }
+ },
+ "system": "drone system 3330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34790386668494,
+ 38.16489298463577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3331",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3331 accessories"
+ }
+ },
+ "system": "drone system 3331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08542873350368,
+ 38.264566970105356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3332",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3332 accessories"
+ }
+ },
+ "system": "drone system 3332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32302627332308,
+ 39.14758488289489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3333",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3333 accessories"
+ }
+ },
+ "system": "drone system 3333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36120430072985,
+ 38.7633054211177
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3334",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3334 accessories"
+ }
+ },
+ "system": "drone system 3334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57634086092752,
+ 38.77471739040932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3335",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3335 accessories"
+ }
+ },
+ "system": "drone system 3335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90416521043487,
+ 38.263454845321306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3336",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3336 accessories"
+ }
+ },
+ "system": "drone system 3336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16956844215247,
+ 39.54717894095209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3337",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3337 accessories"
+ }
+ },
+ "system": "drone system 3337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0000932853183,
+ 39.53019054027262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3338",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3338 accessories"
+ }
+ },
+ "system": "drone system 3338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71569360470454,
+ 39.0078168054663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3339",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3339 accessories"
+ }
+ },
+ "system": "drone system 3339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85246892993673,
+ 39.43868410747077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3340",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3340 accessories"
+ }
+ },
+ "system": "drone system 3340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19612002361636,
+ 38.775778035204006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3341",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3341 accessories"
+ }
+ },
+ "system": "drone system 3341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97549176440894,
+ 39.479021903872294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3342",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3342 accessories"
+ }
+ },
+ "system": "drone system 3342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1753316079052,
+ 38.37306919511557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3343",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3343 accessories"
+ }
+ },
+ "system": "drone system 3343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35345292435673,
+ 38.34749188475442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3344",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3344 accessories"
+ }
+ },
+ "system": "drone system 3344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.529231971012,
+ 38.81873464935372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3345",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3345 accessories"
+ }
+ },
+ "system": "drone system 3345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27631015322547,
+ 38.98441740759946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3346",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3346 accessories"
+ }
+ },
+ "system": "drone system 3346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93784975225275,
+ 38.812303619966684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3347",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3347 accessories"
+ }
+ },
+ "system": "drone system 3347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4394075440355,
+ 39.02819193647919
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3348",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3348 accessories"
+ }
+ },
+ "system": "drone system 3348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70330096317076,
+ 38.341291157066614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3349",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3349 accessories"
+ }
+ },
+ "system": "drone system 3349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8864528165986,
+ 39.03940265264808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3350",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3350 accessories"
+ }
+ },
+ "system": "drone system 3350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71768205423358,
+ 38.151683579288814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3351",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3351 accessories"
+ }
+ },
+ "system": "drone system 3351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.254276099369,
+ 38.56285889158209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3352",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3352 accessories"
+ }
+ },
+ "system": "drone system 3352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62269741916003,
+ 39.19239209534998
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3353",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3353 accessories"
+ }
+ },
+ "system": "drone system 3353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64945575025574,
+ 39.33927525585385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3354",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3354 accessories"
+ }
+ },
+ "system": "drone system 3354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55933407969809,
+ 39.38356207994562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3355",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3355 accessories"
+ }
+ },
+ "system": "drone system 3355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85009593613832,
+ 38.15919959642583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3356",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3356 accessories"
+ }
+ },
+ "system": "drone system 3356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03641880227563,
+ 38.82269435546192
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3357",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3357 accessories"
+ }
+ },
+ "system": "drone system 3357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55060828689739,
+ 38.38924181339169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3358",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3358 accessories"
+ }
+ },
+ "system": "drone system 3358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53687635083774,
+ 38.39767903698639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3359",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3359 accessories"
+ }
+ },
+ "system": "drone system 3359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64921115718091,
+ 38.80608895687263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3360",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3360 accessories"
+ }
+ },
+ "system": "drone system 3360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16295381967853,
+ 38.725132009544794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3361",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3361 accessories"
+ }
+ },
+ "system": "drone system 3361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41751197943874,
+ 38.75680839521455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3362",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3362 accessories"
+ }
+ },
+ "system": "drone system 3362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21440612290303,
+ 38.624509080766536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3363",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3363 accessories"
+ }
+ },
+ "system": "drone system 3363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4616196675752,
+ 39.51796894952173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3364",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3364 accessories"
+ }
+ },
+ "system": "drone system 3364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38423230746486,
+ 39.35565442258915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3365",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3365 accessories"
+ }
+ },
+ "system": "drone system 3365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8148632439972,
+ 38.785201664860416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3366",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3366 accessories"
+ }
+ },
+ "system": "drone system 3366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1379753531284,
+ 39.565299849671526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3367",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3367 accessories"
+ }
+ },
+ "system": "drone system 3367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17370565924168,
+ 38.084181766720924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3368",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3368 accessories"
+ }
+ },
+ "system": "drone system 3368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56286416806562,
+ 38.27353994038705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3369",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3369 accessories"
+ }
+ },
+ "system": "drone system 3369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72357694830744,
+ 38.46169031646561
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3370 accessories"
+ }
+ },
+ "system": "drone system 3370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56719785673188,
+ 38.26209467636735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3371",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3371 accessories"
+ }
+ },
+ "system": "drone system 3371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71716059599457,
+ 39.25735524265736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3372",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3372 accessories"
+ }
+ },
+ "system": "drone system 3372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62724543077671,
+ 39.02840743252042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3373",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3373 accessories"
+ }
+ },
+ "system": "drone system 3373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70994660583376,
+ 39.56836779344335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3374",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3374 accessories"
+ }
+ },
+ "system": "drone system 3374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8913991168417,
+ 38.53653254274371
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3375",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3375 accessories"
+ }
+ },
+ "system": "drone system 3375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75506108882124,
+ 39.08068150393067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3376",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3376 accessories"
+ }
+ },
+ "system": "drone system 3376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67666142641593,
+ 38.72501811391634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3377",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3377 accessories"
+ }
+ },
+ "system": "drone system 3377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14338237619985,
+ 39.0924898208638
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3378",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3378 accessories"
+ }
+ },
+ "system": "drone system 3378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30095687173107,
+ 38.12698045553125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3379",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3379 accessories"
+ }
+ },
+ "system": "drone system 3379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41509088824446,
+ 39.31921717192411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3380",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3380 accessories"
+ }
+ },
+ "system": "drone system 3380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45439973760068,
+ 38.26204616971133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3381",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3381 accessories"
+ }
+ },
+ "system": "drone system 3381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97282004390482,
+ 38.45731438708133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3382",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3382 accessories"
+ }
+ },
+ "system": "drone system 3382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.321796598561,
+ 38.48162786576366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3383",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3383 accessories"
+ }
+ },
+ "system": "drone system 3383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03716476548404,
+ 38.26776536189539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3384",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3384 accessories"
+ }
+ },
+ "system": "drone system 3384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27436338546204,
+ 39.26475383149043
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3385",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3385 accessories"
+ }
+ },
+ "system": "drone system 3385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35168003094988,
+ 39.11411206325116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3386",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3386 accessories"
+ }
+ },
+ "system": "drone system 3386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8672447643454,
+ 38.639910279314954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3387",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3387 accessories"
+ }
+ },
+ "system": "drone system 3387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4987973540328,
+ 38.26003050192735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3388",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3388 accessories"
+ }
+ },
+ "system": "drone system 3388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92792665060139,
+ 39.16124852237538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3389",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3389 accessories"
+ }
+ },
+ "system": "drone system 3389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59488595238412,
+ 38.45425644187259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3390",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3390 accessories"
+ }
+ },
+ "system": "drone system 3390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66837984336527,
+ 38.48961509406703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3391",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3391 accessories"
+ }
+ },
+ "system": "drone system 3391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70675517027223,
+ 38.66388012838448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3392",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3392 accessories"
+ }
+ },
+ "system": "drone system 3392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86785530403672,
+ 38.347904239809345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3393",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3393 accessories"
+ }
+ },
+ "system": "drone system 3393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71113929804794,
+ 39.3907603950432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3394",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3394 accessories"
+ }
+ },
+ "system": "drone system 3394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29712450053515,
+ 39.48653135129303
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3395",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3395 accessories"
+ }
+ },
+ "system": "drone system 3395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8039305381901,
+ 38.94864927154486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3396",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3396 accessories"
+ }
+ },
+ "system": "drone system 3396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02658554562254,
+ 38.90678112281518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3397",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3397 accessories"
+ }
+ },
+ "system": "drone system 3397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04317506486281,
+ 39.586646549873024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3398",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3398 accessories"
+ }
+ },
+ "system": "drone system 3398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20850731436633,
+ 38.80121466525632
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3399",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3399 accessories"
+ }
+ },
+ "system": "drone system 3399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87361700364968,
+ 38.636336984537614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3400",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3400 accessories"
+ }
+ },
+ "system": "drone system 3400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34339055019304,
+ 38.17235884678347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3401",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3401 accessories"
+ }
+ },
+ "system": "drone system 3401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28173722940176,
+ 38.996736708961144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3402",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3402 accessories"
+ }
+ },
+ "system": "drone system 3402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65202442752013,
+ 39.00125259651863
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3403",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3403 accessories"
+ }
+ },
+ "system": "drone system 3403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23929264659381,
+ 39.00230719007115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3404",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3404 accessories"
+ }
+ },
+ "system": "drone system 3404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31185210822883,
+ 39.058065224291234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3405",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3405 accessories"
+ }
+ },
+ "system": "drone system 3405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36086402007396,
+ 38.43192188740213
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3406",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3406 accessories"
+ }
+ },
+ "system": "drone system 3406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35767191275319,
+ 38.24581572573419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3407",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3407 accessories"
+ }
+ },
+ "system": "drone system 3407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55415150949572,
+ 38.256796377497324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3408",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3408 accessories"
+ }
+ },
+ "system": "drone system 3408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75513306488222,
+ 39.033556588673434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3409",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3409 accessories"
+ }
+ },
+ "system": "drone system 3409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7251834205709,
+ 38.312151214276234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3410",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3410 accessories"
+ }
+ },
+ "system": "drone system 3410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21431500933696,
+ 38.6574561812652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3411",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3411 accessories"
+ }
+ },
+ "system": "drone system 3411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84633958612935,
+ 39.04585293975237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3412",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3412 accessories"
+ }
+ },
+ "system": "drone system 3412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22288331383643,
+ 38.767758636542546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3413",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3413 accessories"
+ }
+ },
+ "system": "drone system 3413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67785553798097,
+ 39.34968703780346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3414",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3414 accessories"
+ }
+ },
+ "system": "drone system 3414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32435521567274,
+ 39.40321538875074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3415",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3415 accessories"
+ }
+ },
+ "system": "drone system 3415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38514354931209,
+ 39.32681543216456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3416",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3416 accessories"
+ }
+ },
+ "system": "drone system 3416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47652666607051,
+ 39.19425892863149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3417",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3417 accessories"
+ }
+ },
+ "system": "drone system 3417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24731037259282,
+ 39.763424926151856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3418",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3418 accessories"
+ }
+ },
+ "system": "drone system 3418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78422798639384,
+ 38.51382523880705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3419",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3419 accessories"
+ }
+ },
+ "system": "drone system 3419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94550685755588,
+ 38.60058260623228
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3420",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3420 accessories"
+ }
+ },
+ "system": "drone system 3420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52140771677071,
+ 39.23736237361315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3421",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3421 accessories"
+ }
+ },
+ "system": "drone system 3421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33487254223212,
+ 38.897433429241126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3422",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3422 accessories"
+ }
+ },
+ "system": "drone system 3422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2587621684062,
+ 38.24803851060154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3423",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3423 accessories"
+ }
+ },
+ "system": "drone system 3423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25414911381071,
+ 38.64595594723639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3424",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3424 accessories"
+ }
+ },
+ "system": "drone system 3424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86351860830585,
+ 39.61003332400605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3425",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3425 accessories"
+ }
+ },
+ "system": "drone system 3425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1211698848327,
+ 39.46626644985775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3426",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3426 accessories"
+ }
+ },
+ "system": "drone system 3426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30037971276032,
+ 39.338499220807215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3427",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3427 accessories"
+ }
+ },
+ "system": "drone system 3427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49436246582756,
+ 38.508752834506915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3428",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3428 accessories"
+ }
+ },
+ "system": "drone system 3428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36356385084403,
+ 39.32966228472281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3429",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3429 accessories"
+ }
+ },
+ "system": "drone system 3429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38830289298208,
+ 39.33024706713056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3430",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3430 accessories"
+ }
+ },
+ "system": "drone system 3430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96813799252074,
+ 38.79946069963232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3431",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3431 accessories"
+ }
+ },
+ "system": "drone system 3431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1891264889829,
+ 38.80515604076913
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3432",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3432 accessories"
+ }
+ },
+ "system": "drone system 3432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85602832360604,
+ 39.427475858900976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3433",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3433 accessories"
+ }
+ },
+ "system": "drone system 3433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94009365037294,
+ 38.34824759634366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3434",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3434 accessories"
+ }
+ },
+ "system": "drone system 3434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61102390967592,
+ 38.444388747128635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3435",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3435 accessories"
+ }
+ },
+ "system": "drone system 3435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55700941068265,
+ 38.930414659270625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3436",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3436 accessories"
+ }
+ },
+ "system": "drone system 3436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14820040981336,
+ 38.587081971824446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3437",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3437 accessories"
+ }
+ },
+ "system": "drone system 3437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74314404645102,
+ 38.37947439696284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3438",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3438 accessories"
+ }
+ },
+ "system": "drone system 3438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22039286668394,
+ 38.048031267356095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3439",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3439 accessories"
+ }
+ },
+ "system": "drone system 3439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37025060934857,
+ 38.860871035845165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3440",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3440 accessories"
+ }
+ },
+ "system": "drone system 3440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61864721594056,
+ 39.22731931258827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3441",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3441 accessories"
+ }
+ },
+ "system": "drone system 3441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56860527598184,
+ 38.61273398472064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3442",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3442 accessories"
+ }
+ },
+ "system": "drone system 3442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54010292240423,
+ 39.12938913077158
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3443",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3443 accessories"
+ }
+ },
+ "system": "drone system 3443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02340121858113,
+ 38.80522167269087
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3444",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3444 accessories"
+ }
+ },
+ "system": "drone system 3444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1608588309312,
+ 38.97424090288031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3445",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3445 accessories"
+ }
+ },
+ "system": "drone system 3445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41483838905492,
+ 38.94560698487296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3446",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3446 accessories"
+ }
+ },
+ "system": "drone system 3446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03942753282419,
+ 38.17687747580689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3447",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3447 accessories"
+ }
+ },
+ "system": "drone system 3447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71701115142588,
+ 38.534205859055255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3448",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3448 accessories"
+ }
+ },
+ "system": "drone system 3448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29810858457506,
+ 38.83719127135741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3449",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3449 accessories"
+ }
+ },
+ "system": "drone system 3449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05161426105667,
+ 39.54367725458046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3450",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3450 accessories"
+ }
+ },
+ "system": "drone system 3450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53955848809098,
+ 39.616039035617746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3451",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3451 accessories"
+ }
+ },
+ "system": "drone system 3451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67494514724929,
+ 38.98832515691304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3452",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3452 accessories"
+ }
+ },
+ "system": "drone system 3452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24199288874367,
+ 39.09376699172098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3453",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3453 accessories"
+ }
+ },
+ "system": "drone system 3453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9159703050052,
+ 39.78556701288908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3454",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3454 accessories"
+ }
+ },
+ "system": "drone system 3454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47494251102506,
+ 39.58885302758348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3455",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3455 accessories"
+ }
+ },
+ "system": "drone system 3455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37445288092744,
+ 39.41367190443995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3456",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3456 accessories"
+ }
+ },
+ "system": "drone system 3456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3692913292974,
+ 38.936815130944694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3457",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3457 accessories"
+ }
+ },
+ "system": "drone system 3457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54709618981141,
+ 38.173399587487985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3458",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3458 accessories"
+ }
+ },
+ "system": "drone system 3458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53434627769214,
+ 39.12253224233195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3459",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3459 accessories"
+ }
+ },
+ "system": "drone system 3459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93828177060333,
+ 38.141830705944265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3460",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3460 accessories"
+ }
+ },
+ "system": "drone system 3460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30710890827115,
+ 38.88562618161411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3461",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3461 accessories"
+ }
+ },
+ "system": "drone system 3461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54917635476325,
+ 38.82145234826643
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3462",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3462 accessories"
+ }
+ },
+ "system": "drone system 3462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45811484002279,
+ 38.40062631137919
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3463",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3463 accessories"
+ }
+ },
+ "system": "drone system 3463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15081807219526,
+ 38.29870006714715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3464",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3464 accessories"
+ }
+ },
+ "system": "drone system 3464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5611163155287,
+ 38.60360707462276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3465",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3465 accessories"
+ }
+ },
+ "system": "drone system 3465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8009955893502,
+ 38.16819510346171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3466",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3466 accessories"
+ }
+ },
+ "system": "drone system 3466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70996402228825,
+ 39.247225865394405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3467",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3467 accessories"
+ }
+ },
+ "system": "drone system 3467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58442531771371,
+ 38.57680750591908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3468",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3468 accessories"
+ }
+ },
+ "system": "drone system 3468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59050482922196,
+ 38.52937627885998
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3469",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3469 accessories"
+ }
+ },
+ "system": "drone system 3469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83502597751547,
+ 38.82843979445734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3470",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3470 accessories"
+ }
+ },
+ "system": "drone system 3470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2866902783684,
+ 38.671141045536224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3471",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3471 accessories"
+ }
+ },
+ "system": "drone system 3471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18005185834366,
+ 38.77639363499599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3472",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3472 accessories"
+ }
+ },
+ "system": "drone system 3472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80422654284477,
+ 38.94922957505095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3473",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3473 accessories"
+ }
+ },
+ "system": "drone system 3473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86563462167406,
+ 39.02225501769584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3474",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3474 accessories"
+ }
+ },
+ "system": "drone system 3474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28718847100184,
+ 39.151844605217796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3475",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3475 accessories"
+ }
+ },
+ "system": "drone system 3475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51240093595636,
+ 38.852536569810084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3476",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3476 accessories"
+ }
+ },
+ "system": "drone system 3476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32068908556052,
+ 38.49355716731686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3477",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3477 accessories"
+ }
+ },
+ "system": "drone system 3477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86056808033506,
+ 39.071539727212325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3478",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3478 accessories"
+ }
+ },
+ "system": "drone system 3478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75787698091342,
+ 39.10184412852467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3479",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3479 accessories"
+ }
+ },
+ "system": "drone system 3479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51484193000422,
+ 39.57423658693869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3480",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3480 accessories"
+ }
+ },
+ "system": "drone system 3480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10416134852633,
+ 39.68355924252465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3481",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3481 accessories"
+ }
+ },
+ "system": "drone system 3481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38926645885944,
+ 38.178162881217
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3482",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3482 accessories"
+ }
+ },
+ "system": "drone system 3482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88873882317692,
+ 38.82655913512513
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3483",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3483 accessories"
+ }
+ },
+ "system": "drone system 3483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0683334897785,
+ 38.56630230417397
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3484",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3484 accessories"
+ }
+ },
+ "system": "drone system 3484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67906127572397,
+ 38.982412533742654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3485",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3485 accessories"
+ }
+ },
+ "system": "drone system 3485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25824468970139,
+ 38.52154864902477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3486",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3486 accessories"
+ }
+ },
+ "system": "drone system 3486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2976612017746,
+ 38.543898231786834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3487",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3487 accessories"
+ }
+ },
+ "system": "drone system 3487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3277812112612,
+ 39.13852609286329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3488",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3488 accessories"
+ }
+ },
+ "system": "drone system 3488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29491224589496,
+ 38.882936793454554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3489",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3489 accessories"
+ }
+ },
+ "system": "drone system 3489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12405204575455,
+ 38.30643703856011
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3490",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3490 accessories"
+ }
+ },
+ "system": "drone system 3490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24719266738303,
+ 39.572451977716604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3491",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3491 accessories"
+ }
+ },
+ "system": "drone system 3491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61560668087544,
+ 38.34030451514436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3492",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3492 accessories"
+ }
+ },
+ "system": "drone system 3492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48399417160434,
+ 38.334249049614534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3493",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3493 accessories"
+ }
+ },
+ "system": "drone system 3493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77853422625148,
+ 39.37292930491514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3494",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3494 accessories"
+ }
+ },
+ "system": "drone system 3494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57743203246278,
+ 39.43362357072769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3495",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3495 accessories"
+ }
+ },
+ "system": "drone system 3495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58017681809513,
+ 39.427011767838415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3496",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3496 accessories"
+ }
+ },
+ "system": "drone system 3496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8287681436835,
+ 38.848413833405786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3497",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3497 accessories"
+ }
+ },
+ "system": "drone system 3497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.239821481114,
+ 38.51987411431296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3498",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3498 accessories"
+ }
+ },
+ "system": "drone system 3498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47934228616509,
+ 39.48240748161785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3499",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3499 accessories"
+ }
+ },
+ "system": "drone system 3499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79226326815694,
+ 38.87128893146848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3500",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3500 accessories"
+ }
+ },
+ "system": "drone system 3500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43589295219343,
+ 38.20627884883767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3501",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3501 accessories"
+ }
+ },
+ "system": "drone system 3501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63245965770591,
+ 39.12351889967557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3502",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3502 accessories"
+ }
+ },
+ "system": "drone system 3502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19604585125326,
+ 39.032700760078384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3503",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3503 accessories"
+ }
+ },
+ "system": "drone system 3503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27998896440184,
+ 39.27313433874577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3504",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3504 accessories"
+ }
+ },
+ "system": "drone system 3504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61150560911568,
+ 38.49273070145866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3505",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3505 accessories"
+ }
+ },
+ "system": "drone system 3505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84402123246714,
+ 38.51206461915214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3506",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3506 accessories"
+ }
+ },
+ "system": "drone system 3506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31628953813863,
+ 38.853847405794355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3507",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3507 accessories"
+ }
+ },
+ "system": "drone system 3507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72717122991868,
+ 39.52530386099495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3508",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3508 accessories"
+ }
+ },
+ "system": "drone system 3508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46084229984083,
+ 38.33800540430318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3509",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3509 accessories"
+ }
+ },
+ "system": "drone system 3509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5164922051271,
+ 38.98508491194977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3510",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3510 accessories"
+ }
+ },
+ "system": "drone system 3510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09420134378948,
+ 38.966262908954604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3511",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3511 accessories"
+ }
+ },
+ "system": "drone system 3511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66589065349872,
+ 39.24110348438817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3512",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3512 accessories"
+ }
+ },
+ "system": "drone system 3512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76233829841763,
+ 39.06836296011036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3513",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3513 accessories"
+ }
+ },
+ "system": "drone system 3513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86223108315747,
+ 38.649462926937396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3514",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3514 accessories"
+ }
+ },
+ "system": "drone system 3514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36268680464832,
+ 38.3777506154694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3515",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3515 accessories"
+ }
+ },
+ "system": "drone system 3515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79237529705,
+ 39.23727900553488
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3516",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3516 accessories"
+ }
+ },
+ "system": "drone system 3516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68759905211665,
+ 38.920852998949975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3517",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3517 accessories"
+ }
+ },
+ "system": "drone system 3517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2582709048706,
+ 38.880389721302265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3518",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3518 accessories"
+ }
+ },
+ "system": "drone system 3518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0559516917575,
+ 38.200821632479084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3519",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3519 accessories"
+ }
+ },
+ "system": "drone system 3519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40939297347597,
+ 38.74014252374605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3520",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3520 accessories"
+ }
+ },
+ "system": "drone system 3520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82748487987561,
+ 39.29127868207681
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3521",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3521 accessories"
+ }
+ },
+ "system": "drone system 3521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73462553300871,
+ 38.528010594181595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3522",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3522 accessories"
+ }
+ },
+ "system": "drone system 3522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11754971563833,
+ 39.6401958588116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3523",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3523 accessories"
+ }
+ },
+ "system": "drone system 3523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29209617079216,
+ 38.84017667951005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3524",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3524 accessories"
+ }
+ },
+ "system": "drone system 3524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90540922199555,
+ 38.676794972489226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3525",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3525 accessories"
+ }
+ },
+ "system": "drone system 3525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08398903880794,
+ 38.850478782383675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3526",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3526 accessories"
+ }
+ },
+ "system": "drone system 3526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16742386534443,
+ 38.65773937263975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3527",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3527 accessories"
+ }
+ },
+ "system": "drone system 3527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4412647699683,
+ 38.27618771134339
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3528",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3528 accessories"
+ }
+ },
+ "system": "drone system 3528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60311453838862,
+ 39.06056662821894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3529",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3529 accessories"
+ }
+ },
+ "system": "drone system 3529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64894135883172,
+ 38.35089912453911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3530",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3530 accessories"
+ }
+ },
+ "system": "drone system 3530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25461086235825,
+ 38.41119450540081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3531",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3531 accessories"
+ }
+ },
+ "system": "drone system 3531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73794293148478,
+ 39.52668379658034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3532",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3532 accessories"
+ }
+ },
+ "system": "drone system 3532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27706324533327,
+ 39.63468867477117
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3533",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3533 accessories"
+ }
+ },
+ "system": "drone system 3533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4536080410284,
+ 39.325642615361936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3534",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3534 accessories"
+ }
+ },
+ "system": "drone system 3534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74931923670795,
+ 39.35467208377193
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3535",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3535 accessories"
+ }
+ },
+ "system": "drone system 3535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40809929202598,
+ 39.344693920580625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3536",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3536 accessories"
+ }
+ },
+ "system": "drone system 3536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67353522155686,
+ 38.21657591192567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3537",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3537 accessories"
+ }
+ },
+ "system": "drone system 3537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55476632421419,
+ 38.16683511614593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3538",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3538 accessories"
+ }
+ },
+ "system": "drone system 3538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51543893888865,
+ 39.340177608794136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3539",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3539 accessories"
+ }
+ },
+ "system": "drone system 3539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62862888469056,
+ 39.1141351165712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3540",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3540 accessories"
+ }
+ },
+ "system": "drone system 3540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05592644025587,
+ 38.89068645971759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3541",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3541 accessories"
+ }
+ },
+ "system": "drone system 3541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81030694924365,
+ 39.305889534102484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3542",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3542 accessories"
+ }
+ },
+ "system": "drone system 3542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31309064430877,
+ 39.11977125840796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3543",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3543 accessories"
+ }
+ },
+ "system": "drone system 3543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43398363366734,
+ 38.25716463636345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3544",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3544 accessories"
+ }
+ },
+ "system": "drone system 3544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80803976116006,
+ 38.161028772328976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3545",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3545 accessories"
+ }
+ },
+ "system": "drone system 3545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44245518125341,
+ 38.44329331451173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3546",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3546 accessories"
+ }
+ },
+ "system": "drone system 3546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92347947188316,
+ 39.68023207937436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3547",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3547 accessories"
+ }
+ },
+ "system": "drone system 3547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1180055678065,
+ 38.657209859170855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3548",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3548 accessories"
+ }
+ },
+ "system": "drone system 3548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79072847429829,
+ 39.179945549087414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3549",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3549 accessories"
+ }
+ },
+ "system": "drone system 3549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17976292686257,
+ 38.75774705481513
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3550",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3550 accessories"
+ }
+ },
+ "system": "drone system 3550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7916038228811,
+ 38.5045352731799
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3551",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3551 accessories"
+ }
+ },
+ "system": "drone system 3551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37794968070752,
+ 39.611732082437584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3552",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3552 accessories"
+ }
+ },
+ "system": "drone system 3552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60294062973234,
+ 39.52685097811318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3553",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3553 accessories"
+ }
+ },
+ "system": "drone system 3553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13634812896638,
+ 38.87324411609552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3554",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3554 accessories"
+ }
+ },
+ "system": "drone system 3554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60313693396549,
+ 39.45427303197807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3555",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3555 accessories"
+ }
+ },
+ "system": "drone system 3555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3227583600017,
+ 38.81673659293735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3556",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3556 accessories"
+ }
+ },
+ "system": "drone system 3556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78080572255507,
+ 39.4116905888736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3557",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3557 accessories"
+ }
+ },
+ "system": "drone system 3557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57653875005454,
+ 38.58887137403004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3558",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3558 accessories"
+ }
+ },
+ "system": "drone system 3558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67862612049045,
+ 39.55368052771762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3559",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3559 accessories"
+ }
+ },
+ "system": "drone system 3559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8687245597225,
+ 39.66484708372187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3560",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3560 accessories"
+ }
+ },
+ "system": "drone system 3560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89136218385903,
+ 38.04034524749372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3561",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3561 accessories"
+ }
+ },
+ "system": "drone system 3561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06835734358941,
+ 38.1971059071061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3562",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3562 accessories"
+ }
+ },
+ "system": "drone system 3562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47422123159127,
+ 39.390455420496615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3563",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3563 accessories"
+ }
+ },
+ "system": "drone system 3563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98757451208704,
+ 38.13081347167431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3564",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3564 accessories"
+ }
+ },
+ "system": "drone system 3564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16399569260349,
+ 38.45463178445185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3565",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3565 accessories"
+ }
+ },
+ "system": "drone system 3565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8545963539629,
+ 38.59125053538596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3566 accessories"
+ }
+ },
+ "system": "drone system 3566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18780107462385,
+ 38.95221202068723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3567",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3567 accessories"
+ }
+ },
+ "system": "drone system 3567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7994126748922,
+ 38.404399538660016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3568",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3568 accessories"
+ }
+ },
+ "system": "drone system 3568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38281975781001,
+ 38.30368336313258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3569",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3569 accessories"
+ }
+ },
+ "system": "drone system 3569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51563829947017,
+ 38.29236583298494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3570",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3570 accessories"
+ }
+ },
+ "system": "drone system 3570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67800779003893,
+ 38.338874616198396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3571",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3571 accessories"
+ }
+ },
+ "system": "drone system 3571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64733917946995,
+ 38.47115799011069
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3572",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3572 accessories"
+ }
+ },
+ "system": "drone system 3572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80933367115702,
+ 39.316600573484195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3573",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3573 accessories"
+ }
+ },
+ "system": "drone system 3573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36478243703003,
+ 38.703020726596755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3574",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3574 accessories"
+ }
+ },
+ "system": "drone system 3574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85263717474102,
+ 38.63436256127593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3575",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3575 accessories"
+ }
+ },
+ "system": "drone system 3575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84008776452565,
+ 38.8591450210984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3576",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3576 accessories"
+ }
+ },
+ "system": "drone system 3576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70024944761768,
+ 39.139887714955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3577",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3577 accessories"
+ }
+ },
+ "system": "drone system 3577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21820161737647,
+ 39.23805453215613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3578",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3578 accessories"
+ }
+ },
+ "system": "drone system 3578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91665891232014,
+ 39.01012563502546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3579",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3579 accessories"
+ }
+ },
+ "system": "drone system 3579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07490019663682,
+ 38.444284899536946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3580",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3580 accessories"
+ }
+ },
+ "system": "drone system 3580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62863386053553,
+ 39.542123875018966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3581",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3581 accessories"
+ }
+ },
+ "system": "drone system 3581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2155842713469,
+ 38.673181191327586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3582",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3582 accessories"
+ }
+ },
+ "system": "drone system 3582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71514395309428,
+ 39.579565288647366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3583",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3583 accessories"
+ }
+ },
+ "system": "drone system 3583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13037356745293,
+ 39.00545788212335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3584",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3584 accessories"
+ }
+ },
+ "system": "drone system 3584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18823486831504,
+ 38.17419355392518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3585",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3585 accessories"
+ }
+ },
+ "system": "drone system 3585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44357997260873,
+ 38.52072204813444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3586",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3586 accessories"
+ }
+ },
+ "system": "drone system 3586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86056779311288,
+ 38.14188598945123
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3587",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3587 accessories"
+ }
+ },
+ "system": "drone system 3587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62283212114237,
+ 38.978482281834324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3588",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3588 accessories"
+ }
+ },
+ "system": "drone system 3588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62231659287346,
+ 38.87486472532964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3589",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3589 accessories"
+ }
+ },
+ "system": "drone system 3589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48466652043138,
+ 38.50957523751062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3590",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3590 accessories"
+ }
+ },
+ "system": "drone system 3590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18110942191916,
+ 38.18331151788897
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3591",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3591 accessories"
+ }
+ },
+ "system": "drone system 3591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21723160958939,
+ 39.19801735740165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3592",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3592 accessories"
+ }
+ },
+ "system": "drone system 3592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18163176817562,
+ 38.48422543643483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3593",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3593 accessories"
+ }
+ },
+ "system": "drone system 3593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81234943990772,
+ 38.91641862954328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3594",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3594 accessories"
+ }
+ },
+ "system": "drone system 3594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68104941087586,
+ 38.777579917274565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3595",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3595 accessories"
+ }
+ },
+ "system": "drone system 3595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74316115369102,
+ 38.88938522883137
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3596",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3596 accessories"
+ }
+ },
+ "system": "drone system 3596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28967713947613,
+ 39.76492705004236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3597",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3597 accessories"
+ }
+ },
+ "system": "drone system 3597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38883600029472,
+ 38.8708800722094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3598",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3598 accessories"
+ }
+ },
+ "system": "drone system 3598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18286048085827,
+ 38.525642764389914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3599",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3599 accessories"
+ }
+ },
+ "system": "drone system 3599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65924706046633,
+ 38.58295024032379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3600",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3600 accessories"
+ }
+ },
+ "system": "drone system 3600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49604672730429,
+ 38.497139389325845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3601",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3601 accessories"
+ }
+ },
+ "system": "drone system 3601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44385440720738,
+ 38.42224238398331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3602",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3602 accessories"
+ }
+ },
+ "system": "drone system 3602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00373089592006,
+ 39.65970172006112
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3603",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3603 accessories"
+ }
+ },
+ "system": "drone system 3603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32480150670001,
+ 39.06783315497175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3604",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3604 accessories"
+ }
+ },
+ "system": "drone system 3604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06791684046239,
+ 38.25164780786121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3605",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3605 accessories"
+ }
+ },
+ "system": "drone system 3605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61775413729978,
+ 38.61662866965283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3606",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3606 accessories"
+ }
+ },
+ "system": "drone system 3606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68521050566157,
+ 38.71603116743226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3607",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3607 accessories"
+ }
+ },
+ "system": "drone system 3607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17340396017217,
+ 38.40745289518831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3608",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3608 accessories"
+ }
+ },
+ "system": "drone system 3608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12932366255278,
+ 38.882374399271754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3609",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3609 accessories"
+ }
+ },
+ "system": "drone system 3609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58483924420462,
+ 38.92797383710825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3610",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3610 accessories"
+ }
+ },
+ "system": "drone system 3610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37778600726419,
+ 38.72702710226416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3611",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3611 accessories"
+ }
+ },
+ "system": "drone system 3611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80130523656999,
+ 39.61411443759702
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3612",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3612 accessories"
+ }
+ },
+ "system": "drone system 3612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91534596149745,
+ 39.40414882623991
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3613",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3613 accessories"
+ }
+ },
+ "system": "drone system 3613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90445922057756,
+ 39.25191619205036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3614",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3614 accessories"
+ }
+ },
+ "system": "drone system 3614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29499071310508,
+ 38.97184245379745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3615",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3615 accessories"
+ }
+ },
+ "system": "drone system 3615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1893978275723,
+ 39.21367338494158
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3616",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3616 accessories"
+ }
+ },
+ "system": "drone system 3616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36940394961333,
+ 39.67004075815189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3617",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3617 accessories"
+ }
+ },
+ "system": "drone system 3617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83528874574044,
+ 38.69694363756188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3618",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3618 accessories"
+ }
+ },
+ "system": "drone system 3618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63263063116315,
+ 39.40220331481717
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3619",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3619 accessories"
+ }
+ },
+ "system": "drone system 3619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08691104695446,
+ 38.155513693331116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3620",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3620 accessories"
+ }
+ },
+ "system": "drone system 3620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58056637273064,
+ 38.75538193314079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3621",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3621 accessories"
+ }
+ },
+ "system": "drone system 3621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69411913759713,
+ 38.57087675095346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3622",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3622 accessories"
+ }
+ },
+ "system": "drone system 3622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33339919317447,
+ 39.069937144685696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3623",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3623 accessories"
+ }
+ },
+ "system": "drone system 3623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91841734035603,
+ 39.13543957398778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3624",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3624 accessories"
+ }
+ },
+ "system": "drone system 3624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26930865107411,
+ 38.51448401399434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3625",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3625 accessories"
+ }
+ },
+ "system": "drone system 3625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21956277740486,
+ 38.42688135704002
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3626",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3626 accessories"
+ }
+ },
+ "system": "drone system 3626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56713544149277,
+ 39.18637675602187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3627",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3627 accessories"
+ }
+ },
+ "system": "drone system 3627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34536238750958,
+ 38.9142724386136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3628",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3628 accessories"
+ }
+ },
+ "system": "drone system 3628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46509383145629,
+ 38.58682051289431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3629",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3629 accessories"
+ }
+ },
+ "system": "drone system 3629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92388590212659,
+ 38.13369223245568
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3630",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3630 accessories"
+ }
+ },
+ "system": "drone system 3630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6241616603532,
+ 39.510254976767946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3631",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3631 accessories"
+ }
+ },
+ "system": "drone system 3631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5939013418562,
+ 39.03483743887246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3632",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3632 accessories"
+ }
+ },
+ "system": "drone system 3632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92934252277978,
+ 38.77574590517173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3633",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3633 accessories"
+ }
+ },
+ "system": "drone system 3633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62813567296887,
+ 39.37984991522008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3634",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3634 accessories"
+ }
+ },
+ "system": "drone system 3634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40729313430707,
+ 39.434997659400224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3635",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3635 accessories"
+ }
+ },
+ "system": "drone system 3635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53035007834237,
+ 39.363319117376214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3636",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3636 accessories"
+ }
+ },
+ "system": "drone system 3636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15528237897313,
+ 39.496107762162
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3637",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3637 accessories"
+ }
+ },
+ "system": "drone system 3637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96203208164371,
+ 39.13754326670975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3638",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3638 accessories"
+ }
+ },
+ "system": "drone system 3638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59534132243823,
+ 38.95071292161385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3639",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3639 accessories"
+ }
+ },
+ "system": "drone system 3639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94761348629008,
+ 38.09203147149449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3640",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3640 accessories"
+ }
+ },
+ "system": "drone system 3640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61502672959821,
+ 39.37163784337854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3641",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3641 accessories"
+ }
+ },
+ "system": "drone system 3641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38826488441745,
+ 39.29672725253873
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3642",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3642 accessories"
+ }
+ },
+ "system": "drone system 3642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22965268257704,
+ 38.07581454808096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3643",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3643 accessories"
+ }
+ },
+ "system": "drone system 3643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37114370034641,
+ 39.65000146031328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3644",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3644 accessories"
+ }
+ },
+ "system": "drone system 3644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94271765659298,
+ 38.42630777564189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3645",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3645 accessories"
+ }
+ },
+ "system": "drone system 3645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19480682541145,
+ 38.17088877714959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3646",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3646 accessories"
+ }
+ },
+ "system": "drone system 3646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6901325600742,
+ 38.56084772516627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3647",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3647 accessories"
+ }
+ },
+ "system": "drone system 3647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23224332175148,
+ 39.24711606478754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3648",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3648 accessories"
+ }
+ },
+ "system": "drone system 3648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15913417358415,
+ 38.745027722101085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3649",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3649 accessories"
+ }
+ },
+ "system": "drone system 3649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00342977115314,
+ 38.93695134138939
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3650",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3650 accessories"
+ }
+ },
+ "system": "drone system 3650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5038558252486,
+ 38.345122079846114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3651",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3651 accessories"
+ }
+ },
+ "system": "drone system 3651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91337085949074,
+ 38.94486774203782
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3652",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3652 accessories"
+ }
+ },
+ "system": "drone system 3652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48482784303346,
+ 38.44322020129303
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3653",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3653 accessories"
+ }
+ },
+ "system": "drone system 3653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60915291034011,
+ 38.58168811398259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3654",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3654 accessories"
+ }
+ },
+ "system": "drone system 3654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08900355737724,
+ 39.1947207066492
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3655",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3655 accessories"
+ }
+ },
+ "system": "drone system 3655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3997166288032,
+ 38.84863575398897
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3656",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3656 accessories"
+ }
+ },
+ "system": "drone system 3656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97101558984012,
+ 39.06057628200695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3657",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3657 accessories"
+ }
+ },
+ "system": "drone system 3657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22132831721119,
+ 38.88100275061561
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3658",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3658 accessories"
+ }
+ },
+ "system": "drone system 3658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73769453482845,
+ 38.85163679991276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3659",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3659 accessories"
+ }
+ },
+ "system": "drone system 3659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62885312543648,
+ 38.24427148601464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3660",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3660 accessories"
+ }
+ },
+ "system": "drone system 3660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03449560371791,
+ 39.39116413334751
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3661",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3661 accessories"
+ }
+ },
+ "system": "drone system 3661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2976009094148,
+ 39.2519563508346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3662",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3662 accessories"
+ }
+ },
+ "system": "drone system 3662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2186810532364,
+ 39.70262528094543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3663",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3663 accessories"
+ }
+ },
+ "system": "drone system 3663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71217652657,
+ 38.64379093540948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3664",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3664 accessories"
+ }
+ },
+ "system": "drone system 3664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15058846919348,
+ 39.7191098697257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3665",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3665 accessories"
+ }
+ },
+ "system": "drone system 3665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35108782575367,
+ 39.09640349194528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3666",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3666 accessories"
+ }
+ },
+ "system": "drone system 3666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40857036771342,
+ 38.098861334267106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3667",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3667 accessories"
+ }
+ },
+ "system": "drone system 3667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26329017723562,
+ 38.236066177134354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3668",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3668 accessories"
+ }
+ },
+ "system": "drone system 3668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61752296502986,
+ 38.147482245377105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3669",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3669 accessories"
+ }
+ },
+ "system": "drone system 3669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50407234326444,
+ 38.417821836628704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3670",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3670 accessories"
+ }
+ },
+ "system": "drone system 3670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42187853861871,
+ 38.46979001203622
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3671",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3671 accessories"
+ }
+ },
+ "system": "drone system 3671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36218865801033,
+ 38.8055625970401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3672",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3672 accessories"
+ }
+ },
+ "system": "drone system 3672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88404193321055,
+ 38.73540808942522
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3673",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3673 accessories"
+ }
+ },
+ "system": "drone system 3673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22077360046094,
+ 38.55494330993161
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3674",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3674 accessories"
+ }
+ },
+ "system": "drone system 3674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23255889860198,
+ 38.43791167724424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3675",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3675 accessories"
+ }
+ },
+ "system": "drone system 3675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59742365391057,
+ 39.49982995347851
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3676",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3676 accessories"
+ }
+ },
+ "system": "drone system 3676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2580280286333,
+ 38.890702128840175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3677",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3677 accessories"
+ }
+ },
+ "system": "drone system 3677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7770471466752,
+ 39.37070416283043
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3678",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3678 accessories"
+ }
+ },
+ "system": "drone system 3678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26086920703725,
+ 39.723199990670544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3679",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3679 accessories"
+ }
+ },
+ "system": "drone system 3679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09402241624392,
+ 39.472759039973624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3680",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3680 accessories"
+ }
+ },
+ "system": "drone system 3680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56856182804948,
+ 38.528813170007524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3681",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3681 accessories"
+ }
+ },
+ "system": "drone system 3681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30691932471007,
+ 39.316086628342944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3682",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3682 accessories"
+ }
+ },
+ "system": "drone system 3682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03391889539245,
+ 38.78797433694606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3683",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3683 accessories"
+ }
+ },
+ "system": "drone system 3683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65919766124416,
+ 39.320964387848015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3684",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3684 accessories"
+ }
+ },
+ "system": "drone system 3684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40569913601841,
+ 38.815727460262536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3685",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3685 accessories"
+ }
+ },
+ "system": "drone system 3685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8374405673876,
+ 38.507742769120156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3686",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3686 accessories"
+ }
+ },
+ "system": "drone system 3686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41071536964125,
+ 39.22951347390584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3687",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3687 accessories"
+ }
+ },
+ "system": "drone system 3687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15695333427617,
+ 38.12079079820407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3688",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3688 accessories"
+ }
+ },
+ "system": "drone system 3688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1363512704262,
+ 39.694337674399605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3689",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3689 accessories"
+ }
+ },
+ "system": "drone system 3689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2692519021261,
+ 39.51596432574775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3690",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3690 accessories"
+ }
+ },
+ "system": "drone system 3690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80974552788251,
+ 38.90541270226888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3691",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3691 accessories"
+ }
+ },
+ "system": "drone system 3691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65166430268246,
+ 38.61686798518667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3692",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3692 accessories"
+ }
+ },
+ "system": "drone system 3692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55951918492647,
+ 38.65342792642401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3693",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3693 accessories"
+ }
+ },
+ "system": "drone system 3693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39190871813155,
+ 39.23607998802948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3694",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3694 accessories"
+ }
+ },
+ "system": "drone system 3694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43536403909664,
+ 39.60641712707933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3695",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3695 accessories"
+ }
+ },
+ "system": "drone system 3695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86234734616912,
+ 38.72579763851154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3696",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3696 accessories"
+ }
+ },
+ "system": "drone system 3696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11441813294769,
+ 38.731254819142514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3697",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3697 accessories"
+ }
+ },
+ "system": "drone system 3697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17563458311099,
+ 39.601539708386156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3698",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3698 accessories"
+ }
+ },
+ "system": "drone system 3698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12049465395789,
+ 39.42578554258829
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3699",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3699 accessories"
+ }
+ },
+ "system": "drone system 3699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67231947851116,
+ 39.44278327340135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3700",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3700 accessories"
+ }
+ },
+ "system": "drone system 3700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20569896556623,
+ 38.456498275212226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3701",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3701 accessories"
+ }
+ },
+ "system": "drone system 3701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74896859682636,
+ 38.93935100386667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3702",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3702 accessories"
+ }
+ },
+ "system": "drone system 3702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34049026151395,
+ 38.4160384963963
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3703",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3703 accessories"
+ }
+ },
+ "system": "drone system 3703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71144859690112,
+ 38.95068697777544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3704",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3704 accessories"
+ }
+ },
+ "system": "drone system 3704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30745300079198,
+ 38.98661638743879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3705",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3705 accessories"
+ }
+ },
+ "system": "drone system 3705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35684999984629,
+ 38.91070086170366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3706",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3706 accessories"
+ }
+ },
+ "system": "drone system 3706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34576183313455,
+ 38.971428543906256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3707",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3707 accessories"
+ }
+ },
+ "system": "drone system 3707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18945396563811,
+ 38.05230845674348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3708",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3708 accessories"
+ }
+ },
+ "system": "drone system 3708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34689645700405,
+ 38.933774713993465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3709",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3709 accessories"
+ }
+ },
+ "system": "drone system 3709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27413997922069,
+ 39.505463743771394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3710",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3710 accessories"
+ }
+ },
+ "system": "drone system 3710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27190472777664,
+ 39.329525683609
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3711",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3711 accessories"
+ }
+ },
+ "system": "drone system 3711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61248387529913,
+ 38.50484480235225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3712",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3712 accessories"
+ }
+ },
+ "system": "drone system 3712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72854139880893,
+ 39.33561242421524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3713",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3713 accessories"
+ }
+ },
+ "system": "drone system 3713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32459934967913,
+ 39.26473154345808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3714",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3714 accessories"
+ }
+ },
+ "system": "drone system 3714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28109401171197,
+ 38.74551844605693
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3715",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3715 accessories"
+ }
+ },
+ "system": "drone system 3715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32692646466487,
+ 39.35915353518593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3716",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3716 accessories"
+ }
+ },
+ "system": "drone system 3716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60220802465916,
+ 38.96139801014664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3717",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3717 accessories"
+ }
+ },
+ "system": "drone system 3717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41492118149982,
+ 39.48744550010553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3718",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3718 accessories"
+ }
+ },
+ "system": "drone system 3718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84260394786331,
+ 38.132506572634796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3719",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3719 accessories"
+ }
+ },
+ "system": "drone system 3719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53699072822363,
+ 38.41583956842773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3720",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3720 accessories"
+ }
+ },
+ "system": "drone system 3720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81329316880189,
+ 38.236726572564876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3721",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3721 accessories"
+ }
+ },
+ "system": "drone system 3721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74875533811341,
+ 39.699168181452976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3722",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3722 accessories"
+ }
+ },
+ "system": "drone system 3722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73317430529443,
+ 38.71555075846444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3723",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3723 accessories"
+ }
+ },
+ "system": "drone system 3723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92362936717421,
+ 39.015100623829376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3724",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3724 accessories"
+ }
+ },
+ "system": "drone system 3724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95512725815348,
+ 38.399186163673555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3725",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3725 accessories"
+ }
+ },
+ "system": "drone system 3725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18365767874329,
+ 39.15366742262806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3726",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3726 accessories"
+ }
+ },
+ "system": "drone system 3726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77723314848485,
+ 39.027676182721535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3727",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3727 accessories"
+ }
+ },
+ "system": "drone system 3727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48877617567945,
+ 38.88603598349965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3728",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3728 accessories"
+ }
+ },
+ "system": "drone system 3728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04840502665391,
+ 38.341739503763414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3729",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3729 accessories"
+ }
+ },
+ "system": "drone system 3729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48797481081773,
+ 38.36069428068894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3730",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3730 accessories"
+ }
+ },
+ "system": "drone system 3730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67236313905443,
+ 38.66275565014974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3731",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3731 accessories"
+ }
+ },
+ "system": "drone system 3731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61485840232534,
+ 38.963455847756734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3732",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3732 accessories"
+ }
+ },
+ "system": "drone system 3732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67072193091603,
+ 39.38205694123908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3733",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3733 accessories"
+ }
+ },
+ "system": "drone system 3733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58684580089448,
+ 38.906828533185866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3734",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3734 accessories"
+ }
+ },
+ "system": "drone system 3734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6644709133551,
+ 38.43614133337466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3735",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3735 accessories"
+ }
+ },
+ "system": "drone system 3735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95983148032113,
+ 38.446622985060856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3736",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3736 accessories"
+ }
+ },
+ "system": "drone system 3736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78258397108617,
+ 38.87615726345794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3737",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3737 accessories"
+ }
+ },
+ "system": "drone system 3737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5243656805663,
+ 39.377559608685594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3738",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3738 accessories"
+ }
+ },
+ "system": "drone system 3738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53439078336203,
+ 39.63012727598003
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3739",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3739 accessories"
+ }
+ },
+ "system": "drone system 3739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51417775296191,
+ 39.26595117571563
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3740",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3740 accessories"
+ }
+ },
+ "system": "drone system 3740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04366686040963,
+ 38.665583754344944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3741",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3741 accessories"
+ }
+ },
+ "system": "drone system 3741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80163251197105,
+ 38.150911981662254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3742",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3742 accessories"
+ }
+ },
+ "system": "drone system 3742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33614699508142,
+ 38.668526734854524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3743",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3743 accessories"
+ }
+ },
+ "system": "drone system 3743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03969868730039,
+ 38.66708845023938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3744",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3744 accessories"
+ }
+ },
+ "system": "drone system 3744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30023922394433,
+ 39.325841438907986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3745",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3745 accessories"
+ }
+ },
+ "system": "drone system 3745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41219539658167,
+ 39.3998004998959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3746",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3746 accessories"
+ }
+ },
+ "system": "drone system 3746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89297662729676,
+ 39.19454217768627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3747",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3747 accessories"
+ }
+ },
+ "system": "drone system 3747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3398081555001,
+ 39.21812812677779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3748",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3748 accessories"
+ }
+ },
+ "system": "drone system 3748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23238158311125,
+ 39.237359528566145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3749",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3749 accessories"
+ }
+ },
+ "system": "drone system 3749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4188255247711,
+ 38.52454318632608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3750",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3750 accessories"
+ }
+ },
+ "system": "drone system 3750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75728910902045,
+ 39.741446544511874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3751",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3751 accessories"
+ }
+ },
+ "system": "drone system 3751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74075250226902,
+ 38.78257607573388
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3752",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3752 accessories"
+ }
+ },
+ "system": "drone system 3752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42838941876994,
+ 38.49343503022126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3753",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3753 accessories"
+ }
+ },
+ "system": "drone system 3753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21121186103416,
+ 39.10099631285754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3754",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3754 accessories"
+ }
+ },
+ "system": "drone system 3754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63195636191179,
+ 38.214307107087315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3755",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3755 accessories"
+ }
+ },
+ "system": "drone system 3755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5934860526986,
+ 39.680368904681224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3756",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3756 accessories"
+ }
+ },
+ "system": "drone system 3756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2377069778589,
+ 38.32284814182399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3757",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3757 accessories"
+ }
+ },
+ "system": "drone system 3757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27828823996168,
+ 38.48997762152924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3758",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3758 accessories"
+ }
+ },
+ "system": "drone system 3758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9499982450461,
+ 38.95645310458853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3759",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3759 accessories"
+ }
+ },
+ "system": "drone system 3759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45356967463617,
+ 39.047005701946475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3760",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3760 accessories"
+ }
+ },
+ "system": "drone system 3760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16878201865995,
+ 39.30338232256404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3761",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3761 accessories"
+ }
+ },
+ "system": "drone system 3761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43578855206627,
+ 38.610623966333726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3762",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3762 accessories"
+ }
+ },
+ "system": "drone system 3762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.778255273135,
+ 38.38655659984693
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3763",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3763 accessories"
+ }
+ },
+ "system": "drone system 3763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64903804989774,
+ 39.56252934315599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3764",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3764 accessories"
+ }
+ },
+ "system": "drone system 3764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95706842160314,
+ 38.51096918352167
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3765",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3765 accessories"
+ }
+ },
+ "system": "drone system 3765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83311872999755,
+ 39.069482175540884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3766",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3766 accessories"
+ }
+ },
+ "system": "drone system 3766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79709922265674,
+ 38.95497890358549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3767",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3767 accessories"
+ }
+ },
+ "system": "drone system 3767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8971900115788,
+ 38.599640040837485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3768",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3768 accessories"
+ }
+ },
+ "system": "drone system 3768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41159577640335,
+ 39.23004978686885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3769",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3769 accessories"
+ }
+ },
+ "system": "drone system 3769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4618241014325,
+ 39.113673830516504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3770",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3770 accessories"
+ }
+ },
+ "system": "drone system 3770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41130999337359,
+ 38.278644749364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3771",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3771 accessories"
+ }
+ },
+ "system": "drone system 3771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02527999374655,
+ 39.39688625557168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3772",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3772 accessories"
+ }
+ },
+ "system": "drone system 3772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80817574056283,
+ 38.1634383667405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3773",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3773 accessories"
+ }
+ },
+ "system": "drone system 3773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71574523961755,
+ 38.6751693046304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3774",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3774 accessories"
+ }
+ },
+ "system": "drone system 3774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84324851379961,
+ 38.527722655259836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3775",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3775 accessories"
+ }
+ },
+ "system": "drone system 3775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65644051568626,
+ 38.5482731817001
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3776",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3776 accessories"
+ }
+ },
+ "system": "drone system 3776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50688571519731,
+ 38.739502768859545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3777",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3777 accessories"
+ }
+ },
+ "system": "drone system 3777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6872901874814,
+ 39.464129943698325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3778",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3778 accessories"
+ }
+ },
+ "system": "drone system 3778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36207685524263,
+ 38.73349043124246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3779",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3779 accessories"
+ }
+ },
+ "system": "drone system 3779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47060895619093,
+ 38.5678408760299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3780",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3780 accessories"
+ }
+ },
+ "system": "drone system 3780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55245706725252,
+ 38.41283545066988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3781",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3781 accessories"
+ }
+ },
+ "system": "drone system 3781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78740689685598,
+ 38.83652134738729
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3782",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3782 accessories"
+ }
+ },
+ "system": "drone system 3782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.561520237208,
+ 39.199779568468436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3783",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3783 accessories"
+ }
+ },
+ "system": "drone system 3783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46839850019053,
+ 39.094274316685606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3784",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3784 accessories"
+ }
+ },
+ "system": "drone system 3784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18471192091697,
+ 39.671608120269696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3785",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3785 accessories"
+ }
+ },
+ "system": "drone system 3785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08293449028015,
+ 38.18369650188967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3786",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3786 accessories"
+ }
+ },
+ "system": "drone system 3786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26581535157231,
+ 39.21360241171556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3787",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3787 accessories"
+ }
+ },
+ "system": "drone system 3787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78153455253833,
+ 38.55686756265367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3788",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3788 accessories"
+ }
+ },
+ "system": "drone system 3788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0878308129887,
+ 38.08126758673095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3789",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3789 accessories"
+ }
+ },
+ "system": "drone system 3789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35200506634573,
+ 38.93616185166494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3790",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3790 accessories"
+ }
+ },
+ "system": "drone system 3790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06987952709197,
+ 38.24441544019898
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3791",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3791 accessories"
+ }
+ },
+ "system": "drone system 3791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89432005406712,
+ 38.99346023517059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3792",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3792 accessories"
+ }
+ },
+ "system": "drone system 3792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85811943877044,
+ 38.25355367926725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3793",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3793 accessories"
+ }
+ },
+ "system": "drone system 3793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.92495160580762,
+ 38.93917705137726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3794",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3794 accessories"
+ }
+ },
+ "system": "drone system 3794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59544392087142,
+ 38.594180882591175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3795",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3795 accessories"
+ }
+ },
+ "system": "drone system 3795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8856158587351,
+ 38.61772636412285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3796",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3796 accessories"
+ }
+ },
+ "system": "drone system 3796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29770665555293,
+ 39.62920601017232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3797",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3797 accessories"
+ }
+ },
+ "system": "drone system 3797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74607208194362,
+ 39.01220998438318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3798",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3798 accessories"
+ }
+ },
+ "system": "drone system 3798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78900112555799,
+ 38.527484308600876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3799",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3799 accessories"
+ }
+ },
+ "system": "drone system 3799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85559068333401,
+ 38.97710532478142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3800",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3800 accessories"
+ }
+ },
+ "system": "drone system 3800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11286274120015,
+ 39.72256656802748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3801",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3801 accessories"
+ }
+ },
+ "system": "drone system 3801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67718951608774,
+ 38.530999439566415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3802",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3802 accessories"
+ }
+ },
+ "system": "drone system 3802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67539291592345,
+ 39.67175019614418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3803",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3803 accessories"
+ }
+ },
+ "system": "drone system 3803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33733955468443,
+ 38.59385914460895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3804",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3804 accessories"
+ }
+ },
+ "system": "drone system 3804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44043155164651,
+ 38.57439404196142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3805",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3805 accessories"
+ }
+ },
+ "system": "drone system 3805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12374080613388,
+ 38.072275461661334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3806",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3806 accessories"
+ }
+ },
+ "system": "drone system 3806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58114777137902,
+ 38.23349194884446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3807",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3807 accessories"
+ }
+ },
+ "system": "drone system 3807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19326244226056,
+ 38.27117409306154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3808",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3808 accessories"
+ }
+ },
+ "system": "drone system 3808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4368551013996,
+ 39.29671100131086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3809",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3809 accessories"
+ }
+ },
+ "system": "drone system 3809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38046892434694,
+ 39.19668680689507
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3810",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3810 accessories"
+ }
+ },
+ "system": "drone system 3810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41574677748586,
+ 39.5605362702215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3811",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3811 accessories"
+ }
+ },
+ "system": "drone system 3811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32295055828257,
+ 38.387373549019514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3812",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3812 accessories"
+ }
+ },
+ "system": "drone system 3812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13245649622357,
+ 38.84372975225606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3813",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3813 accessories"
+ }
+ },
+ "system": "drone system 3813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78566274544983,
+ 38.274272662265005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3814",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3814 accessories"
+ }
+ },
+ "system": "drone system 3814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3157388289749,
+ 38.920449914153366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3815",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3815 accessories"
+ }
+ },
+ "system": "drone system 3815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53111943995611,
+ 38.63903933451938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3816",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3816 accessories"
+ }
+ },
+ "system": "drone system 3816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2311737119471,
+ 39.11229967943287
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3817",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3817 accessories"
+ }
+ },
+ "system": "drone system 3817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53067283869346,
+ 39.42068532351923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3818",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3818 accessories"
+ }
+ },
+ "system": "drone system 3818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46242123533403,
+ 38.939771261788025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3819",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3819 accessories"
+ }
+ },
+ "system": "drone system 3819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01337783963221,
+ 39.12766756262641
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3820",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3820 accessories"
+ }
+ },
+ "system": "drone system 3820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32374831130952,
+ 39.183054388267074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3821",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3821 accessories"
+ }
+ },
+ "system": "drone system 3821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93222734568032,
+ 39.081615736958874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3822",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3822 accessories"
+ }
+ },
+ "system": "drone system 3822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02979860827458,
+ 39.6054373224343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3823",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3823 accessories"
+ }
+ },
+ "system": "drone system 3823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37941406165166,
+ 38.46617259768397
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3824",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3824 accessories"
+ }
+ },
+ "system": "drone system 3824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71395965634797,
+ 39.32193726490133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3825",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3825 accessories"
+ }
+ },
+ "system": "drone system 3825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4880259290321,
+ 39.18285093310112
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3826",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3826 accessories"
+ }
+ },
+ "system": "drone system 3826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25215668917346,
+ 38.66598629806831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3827",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3827 accessories"
+ }
+ },
+ "system": "drone system 3827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0985121878159,
+ 38.82018380000328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3828",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3828 accessories"
+ }
+ },
+ "system": "drone system 3828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53040964612566,
+ 39.146414079503025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3829",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3829 accessories"
+ }
+ },
+ "system": "drone system 3829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73587989821927,
+ 38.92976492128227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3830",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3830 accessories"
+ }
+ },
+ "system": "drone system 3830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70937299056308,
+ 38.93406020726506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3831",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3831 accessories"
+ }
+ },
+ "system": "drone system 3831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99227980592612,
+ 39.80137756949569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3832",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3832 accessories"
+ }
+ },
+ "system": "drone system 3832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68137628358032,
+ 38.81037305098474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3833",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3833 accessories"
+ }
+ },
+ "system": "drone system 3833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48138538293253,
+ 39.147996825032536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3834",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3834 accessories"
+ }
+ },
+ "system": "drone system 3834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95781696751867,
+ 38.66379454123062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3835",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3835 accessories"
+ }
+ },
+ "system": "drone system 3835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48267158226808,
+ 38.683630529957256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3836",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3836 accessories"
+ }
+ },
+ "system": "drone system 3836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26943691913384,
+ 39.273074503512774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3837",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3837 accessories"
+ }
+ },
+ "system": "drone system 3837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58491840375491,
+ 38.872972733143214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3838",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3838 accessories"
+ }
+ },
+ "system": "drone system 3838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70880086843835,
+ 38.941766683603824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3839",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3839 accessories"
+ }
+ },
+ "system": "drone system 3839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73863304046412,
+ 39.15456925217498
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3840",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3840 accessories"
+ }
+ },
+ "system": "drone system 3840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23348860036116,
+ 39.329154321161134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3841",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3841 accessories"
+ }
+ },
+ "system": "drone system 3841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91117622221937,
+ 38.97641825975299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3842",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3842 accessories"
+ }
+ },
+ "system": "drone system 3842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1895761996681,
+ 39.28034704920092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3843",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3843 accessories"
+ }
+ },
+ "system": "drone system 3843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20810153641378,
+ 38.91462800406626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3844",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3844 accessories"
+ }
+ },
+ "system": "drone system 3844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63323796653584,
+ 39.13196459246878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3845",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3845 accessories"
+ }
+ },
+ "system": "drone system 3845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00955246174814,
+ 39.452172856259374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3846",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3846 accessories"
+ }
+ },
+ "system": "drone system 3846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50055463308405,
+ 39.6232262385207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3847",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3847 accessories"
+ }
+ },
+ "system": "drone system 3847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8304837736076,
+ 39.4187541155725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3848",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3848 accessories"
+ }
+ },
+ "system": "drone system 3848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79623885572934,
+ 38.579722419344094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3849",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3849 accessories"
+ }
+ },
+ "system": "drone system 3849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.863217043518,
+ 38.769875444365645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3850",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3850 accessories"
+ }
+ },
+ "system": "drone system 3850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3833994289216,
+ 39.084478736320406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3851",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3851 accessories"
+ }
+ },
+ "system": "drone system 3851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11141532416381,
+ 39.784547818295835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3852",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3852 accessories"
+ }
+ },
+ "system": "drone system 3852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57899906578348,
+ 39.03926863029803
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3853",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3853 accessories"
+ }
+ },
+ "system": "drone system 3853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61775927170088,
+ 39.35395642178037
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3854",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3854 accessories"
+ }
+ },
+ "system": "drone system 3854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52144197207909,
+ 38.51323298652024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3855",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3855 accessories"
+ }
+ },
+ "system": "drone system 3855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47558326329722,
+ 38.86577670959051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3856",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3856 accessories"
+ }
+ },
+ "system": "drone system 3856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64402837055955,
+ 39.16826095799554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3857",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3857 accessories"
+ }
+ },
+ "system": "drone system 3857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6096270055991,
+ 38.88241614229545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3858",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3858 accessories"
+ }
+ },
+ "system": "drone system 3858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08260895891777,
+ 38.757671983834946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3859",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3859 accessories"
+ }
+ },
+ "system": "drone system 3859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86393571087886,
+ 38.24488092932736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3860",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3860 accessories"
+ }
+ },
+ "system": "drone system 3860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19392151915974,
+ 38.088397399509844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3861",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3861 accessories"
+ }
+ },
+ "system": "drone system 3861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8755245389528,
+ 38.791942822760575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3862",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3862 accessories"
+ }
+ },
+ "system": "drone system 3862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85728554209844,
+ 38.86648575897448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3863",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3863 accessories"
+ }
+ },
+ "system": "drone system 3863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99841595301412,
+ 39.012328407827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3864",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3864 accessories"
+ }
+ },
+ "system": "drone system 3864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19354990108039,
+ 39.03499479512341
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3865",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3865 accessories"
+ }
+ },
+ "system": "drone system 3865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42018303328388,
+ 39.31597778826229
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3866",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3866 accessories"
+ }
+ },
+ "system": "drone system 3866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.178806061991,
+ 39.50903939869597
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3867",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3867 accessories"
+ }
+ },
+ "system": "drone system 3867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61073625839975,
+ 38.32989967016115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3868",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3868 accessories"
+ }
+ },
+ "system": "drone system 3868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76273419870054,
+ 39.66436619444252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3869",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3869 accessories"
+ }
+ },
+ "system": "drone system 3869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35951400912938,
+ 38.74996665513035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3870",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3870 accessories"
+ }
+ },
+ "system": "drone system 3870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77778712967235,
+ 38.907231684027344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3871",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3871 accessories"
+ }
+ },
+ "system": "drone system 3871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72696467679516,
+ 38.606082770434604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3872",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3872 accessories"
+ }
+ },
+ "system": "drone system 3872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54064817257341,
+ 38.665752024693354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3873",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3873 accessories"
+ }
+ },
+ "system": "drone system 3873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04186061047018,
+ 39.038290706345364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3874",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3874 accessories"
+ }
+ },
+ "system": "drone system 3874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58372820508391,
+ 38.17925653888379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3875",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3875 accessories"
+ }
+ },
+ "system": "drone system 3875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73956263563197,
+ 38.500835272093234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3876",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3876 accessories"
+ }
+ },
+ "system": "drone system 3876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38137506316808,
+ 38.45178905115345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3877",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3877 accessories"
+ }
+ },
+ "system": "drone system 3877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06820202741993,
+ 39.40080354952042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3878",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3878 accessories"
+ }
+ },
+ "system": "drone system 3878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13789850202306,
+ 38.27704579093127
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3879",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3879 accessories"
+ }
+ },
+ "system": "drone system 3879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34552927073806,
+ 38.821905667701344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3880",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3880 accessories"
+ }
+ },
+ "system": "drone system 3880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70036690964247,
+ 39.487821322500366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3881 accessories"
+ }
+ },
+ "system": "drone system 3881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03615875684177,
+ 38.37651363955366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3882",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3882 accessories"
+ }
+ },
+ "system": "drone system 3882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69709625515817,
+ 39.68830581023965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3883",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3883 accessories"
+ }
+ },
+ "system": "drone system 3883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39708409330683,
+ 38.49574338594808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3884",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3884 accessories"
+ }
+ },
+ "system": "drone system 3884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44096535842246,
+ 38.926762831593344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3885",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3885 accessories"
+ }
+ },
+ "system": "drone system 3885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97943298949656,
+ 38.42513835363334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3886",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3886 accessories"
+ }
+ },
+ "system": "drone system 3886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64049483500042,
+ 38.17885655165356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3887",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3887 accessories"
+ }
+ },
+ "system": "drone system 3887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07161947005,
+ 38.82236741033691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3888",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3888 accessories"
+ }
+ },
+ "system": "drone system 3888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49895664448199,
+ 39.22710147264108
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3889",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3889 accessories"
+ }
+ },
+ "system": "drone system 3889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73114522662985,
+ 38.895836290239714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3890",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3890 accessories"
+ }
+ },
+ "system": "drone system 3890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1023041336245,
+ 38.22132783557064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3891",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3891 accessories"
+ }
+ },
+ "system": "drone system 3891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65996768674988,
+ 39.66576185360635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3892",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3892 accessories"
+ }
+ },
+ "system": "drone system 3892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23319751190114,
+ 39.61573658623305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3893",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3893 accessories"
+ }
+ },
+ "system": "drone system 3893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57251359901812,
+ 38.71249030469577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3894",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3894 accessories"
+ }
+ },
+ "system": "drone system 3894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46234825391899,
+ 39.04993552471331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3895",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3895 accessories"
+ }
+ },
+ "system": "drone system 3895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64796555149749,
+ 39.1046322159426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3896",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3896 accessories"
+ }
+ },
+ "system": "drone system 3896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9477707071283,
+ 39.6847600132224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3897",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3897 accessories"
+ }
+ },
+ "system": "drone system 3897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07818034916716,
+ 38.73205149556617
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3898",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3898 accessories"
+ }
+ },
+ "system": "drone system 3898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1701021883353,
+ 39.10838427660291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3899",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3899 accessories"
+ }
+ },
+ "system": "drone system 3899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30274858689954,
+ 38.50745057412717
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3900",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3900 accessories"
+ }
+ },
+ "system": "drone system 3900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38417465392392,
+ 39.03307016867121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3901",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3901 accessories"
+ }
+ },
+ "system": "drone system 3901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82318696895977,
+ 38.65063136673901
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3902",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3902 accessories"
+ }
+ },
+ "system": "drone system 3902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2827889284221,
+ 38.716375265672745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3903",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3903 accessories"
+ }
+ },
+ "system": "drone system 3903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45087478733153,
+ 38.77254895931414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3904",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3904 accessories"
+ }
+ },
+ "system": "drone system 3904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01620833626123,
+ 39.77254532036189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3905",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3905 accessories"
+ }
+ },
+ "system": "drone system 3905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5927610052808,
+ 38.46851912662962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3906",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3906 accessories"
+ }
+ },
+ "system": "drone system 3906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54689839673287,
+ 38.99556665136505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3907",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3907 accessories"
+ }
+ },
+ "system": "drone system 3907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28670363247441,
+ 39.44771621842159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3908",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3908 accessories"
+ }
+ },
+ "system": "drone system 3908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80886178617222,
+ 39.07886306457958
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3909",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3909 accessories"
+ }
+ },
+ "system": "drone system 3909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55421338657725,
+ 38.5895667570683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3910",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3910 accessories"
+ }
+ },
+ "system": "drone system 3910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34013677390745,
+ 38.41087731234542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3911",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3911 accessories"
+ }
+ },
+ "system": "drone system 3911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95469047445789,
+ 39.04362379463741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3912",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3912 accessories"
+ }
+ },
+ "system": "drone system 3912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76873470278272,
+ 38.346382140687155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3913",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3913 accessories"
+ }
+ },
+ "system": "drone system 3913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37300635103605,
+ 38.16164684057218
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3914",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3914 accessories"
+ }
+ },
+ "system": "drone system 3914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53550268273884,
+ 38.26438601968775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3915",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3915 accessories"
+ }
+ },
+ "system": "drone system 3915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70893814966968,
+ 38.8888217741803
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3916",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3916 accessories"
+ }
+ },
+ "system": "drone system 3916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87646296911173,
+ 39.629971074390255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3917",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3917 accessories"
+ }
+ },
+ "system": "drone system 3917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76162705562315,
+ 39.08182295443201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3918",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3918 accessories"
+ }
+ },
+ "system": "drone system 3918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79612943700741,
+ 38.47859826253414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3919",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3919 accessories"
+ }
+ },
+ "system": "drone system 3919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38553212748552,
+ 38.97904534815008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3920",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3920 accessories"
+ }
+ },
+ "system": "drone system 3920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29363455379844,
+ 38.45271312680379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3921",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3921 accessories"
+ }
+ },
+ "system": "drone system 3921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85252390252525,
+ 39.1309883706933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3922",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3922 accessories"
+ }
+ },
+ "system": "drone system 3922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36420315573639,
+ 38.08161143693763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3923",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3923 accessories"
+ }
+ },
+ "system": "drone system 3923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31180444885756,
+ 38.895875782030764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3924",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3924 accessories"
+ }
+ },
+ "system": "drone system 3924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5277790341737,
+ 38.30674001478865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3925",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3925 accessories"
+ }
+ },
+ "system": "drone system 3925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44534971738975,
+ 39.345237839899575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3926",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3926 accessories"
+ }
+ },
+ "system": "drone system 3926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27226678686677,
+ 38.98292489774369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3927",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3927 accessories"
+ }
+ },
+ "system": "drone system 3927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78142688516138,
+ 38.68555560912471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3928",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3928 accessories"
+ }
+ },
+ "system": "drone system 3928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29294739798823,
+ 38.7576847971129
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3929",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3929 accessories"
+ }
+ },
+ "system": "drone system 3929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13988737463455,
+ 39.02364384300602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3930",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3930 accessories"
+ }
+ },
+ "system": "drone system 3930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86185445636423,
+ 39.0121190948807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3931",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3931 accessories"
+ }
+ },
+ "system": "drone system 3931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3441718118826,
+ 38.10476325927095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3932",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3932 accessories"
+ }
+ },
+ "system": "drone system 3932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72686151267565,
+ 38.65523269133905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3933",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3933 accessories"
+ }
+ },
+ "system": "drone system 3933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52971138487045,
+ 38.65836021220371
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3934",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3934 accessories"
+ }
+ },
+ "system": "drone system 3934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49233443822989,
+ 38.82403291964954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3935",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3935 accessories"
+ }
+ },
+ "system": "drone system 3935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61133808518886,
+ 38.401484102124556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3936",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3936 accessories"
+ }
+ },
+ "system": "drone system 3936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44949606767807,
+ 39.69272958526825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3937",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3937 accessories"
+ }
+ },
+ "system": "drone system 3937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89735541353872,
+ 38.01993401648465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3938",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3938 accessories"
+ }
+ },
+ "system": "drone system 3938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01956257928741,
+ 38.4888782815424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3939",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3939 accessories"
+ }
+ },
+ "system": "drone system 3939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32239845971532,
+ 39.12754940592156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3940",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3940 accessories"
+ }
+ },
+ "system": "drone system 3940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0223992524766,
+ 38.27408159437221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3941",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3941 accessories"
+ }
+ },
+ "system": "drone system 3941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46082769247433,
+ 38.74170414561562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3942",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3942 accessories"
+ }
+ },
+ "system": "drone system 3942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63037947949772,
+ 38.85838295109403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3943",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3943 accessories"
+ }
+ },
+ "system": "drone system 3943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90895803070269,
+ 39.33490220090418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3944",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3944 accessories"
+ }
+ },
+ "system": "drone system 3944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6280342764919,
+ 39.454417774704474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3945",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3945 accessories"
+ }
+ },
+ "system": "drone system 3945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08349764684112,
+ 38.77347628732922
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3946",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3946 accessories"
+ }
+ },
+ "system": "drone system 3946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3613510493897,
+ 38.795726564011
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3947",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3947 accessories"
+ }
+ },
+ "system": "drone system 3947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4851223949978,
+ 39.0136622679294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3948",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3948 accessories"
+ }
+ },
+ "system": "drone system 3948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6823607529931,
+ 38.97769853751036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3949",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3949 accessories"
+ }
+ },
+ "system": "drone system 3949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13518674595598,
+ 38.21698142562519
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3950",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3950 accessories"
+ }
+ },
+ "system": "drone system 3950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90576065063722,
+ 39.597975974824756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3951",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3951 accessories"
+ }
+ },
+ "system": "drone system 3951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11668147914628,
+ 38.55147552997962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3952",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3952 accessories"
+ }
+ },
+ "system": "drone system 3952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51204841376101,
+ 39.16851859302375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3953",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3953 accessories"
+ }
+ },
+ "system": "drone system 3953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46737546853024,
+ 39.4533751640677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3954",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3954 accessories"
+ }
+ },
+ "system": "drone system 3954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78438497125815,
+ 38.523451726467194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3955",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3955 accessories"
+ }
+ },
+ "system": "drone system 3955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80167051266251,
+ 39.36852146343284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3956",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3956 accessories"
+ }
+ },
+ "system": "drone system 3956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29065859496485,
+ 38.639724829047665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3957",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3957 accessories"
+ }
+ },
+ "system": "drone system 3957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90302514512348,
+ 38.714132552154155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3958",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3958 accessories"
+ }
+ },
+ "system": "drone system 3958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37853537076431,
+ 39.12700051298107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3959",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3959 accessories"
+ }
+ },
+ "system": "drone system 3959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52448279766034,
+ 39.048929568041714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3960",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3960 accessories"
+ }
+ },
+ "system": "drone system 3960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14759653580427,
+ 39.459958654593066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3961",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3961 accessories"
+ }
+ },
+ "system": "drone system 3961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50239671314617,
+ 39.49261843210946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3962",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3962 accessories"
+ }
+ },
+ "system": "drone system 3962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6079952273894,
+ 38.876179470708195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3963",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3963 accessories"
+ }
+ },
+ "system": "drone system 3963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17584599759525,
+ 39.55768311229369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3964",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3964 accessories"
+ }
+ },
+ "system": "drone system 3964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13522979466093,
+ 38.42441694571862
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3965",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3965 accessories"
+ }
+ },
+ "system": "drone system 3965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89009791463441,
+ 38.83640732921663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3966",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3966 accessories"
+ }
+ },
+ "system": "drone system 3966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1171093968079,
+ 38.18201645834228
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3967",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3967 accessories"
+ }
+ },
+ "system": "drone system 3967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07524829644747,
+ 39.616138320759845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3968",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3968 accessories"
+ }
+ },
+ "system": "drone system 3968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94224977198455,
+ 38.94875853473665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3969",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3969 accessories"
+ }
+ },
+ "system": "drone system 3969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41556023389516,
+ 38.24086397486781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3970",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3970 accessories"
+ }
+ },
+ "system": "drone system 3970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68254063146777,
+ 39.64438282730306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3971",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3971 accessories"
+ }
+ },
+ "system": "drone system 3971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67846009602333,
+ 38.96023291036351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3972",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3972 accessories"
+ }
+ },
+ "system": "drone system 3972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25454140611728,
+ 39.771763860918874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3973",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3973 accessories"
+ }
+ },
+ "system": "drone system 3973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41606467036019,
+ 38.384087633295394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3974",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3974 accessories"
+ }
+ },
+ "system": "drone system 3974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81075147875643,
+ 38.93679643743008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3975",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3975 accessories"
+ }
+ },
+ "system": "drone system 3975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84764124594068,
+ 38.11543865034017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3976",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3976 accessories"
+ }
+ },
+ "system": "drone system 3976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83064301771851,
+ 39.03630144864618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3977",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3977 accessories"
+ }
+ },
+ "system": "drone system 3977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21066640315166,
+ 38.262398441362095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3978",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3978 accessories"
+ }
+ },
+ "system": "drone system 3978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4258452977093,
+ 38.57007196205321
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3979",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3979 accessories"
+ }
+ },
+ "system": "drone system 3979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03892492491799,
+ 39.23624124840006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3980",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3980 accessories"
+ }
+ },
+ "system": "drone system 3980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60690191647933,
+ 38.41531163232196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3981",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3981 accessories"
+ }
+ },
+ "system": "drone system 3981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55476556779975,
+ 39.07733835833895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3982",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3982 accessories"
+ }
+ },
+ "system": "drone system 3982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23556434328154,
+ 39.11660606798002
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3983",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3983 accessories"
+ }
+ },
+ "system": "drone system 3983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30728094490813,
+ 39.6174806565434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3984",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3984 accessories"
+ }
+ },
+ "system": "drone system 3984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60511144661645,
+ 38.7592790321661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3985",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3985 accessories"
+ }
+ },
+ "system": "drone system 3985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39977817903875,
+ 39.64708026920587
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3986",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3986 accessories"
+ }
+ },
+ "system": "drone system 3986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55746420980908,
+ 39.282899494270424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3987",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3987 accessories"
+ }
+ },
+ "system": "drone system 3987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48462598032906,
+ 38.22337649018549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3988",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3988 accessories"
+ }
+ },
+ "system": "drone system 3988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40039145438226,
+ 39.100388835279155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3989",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3989 accessories"
+ }
+ },
+ "system": "drone system 3989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4977929897149,
+ 39.10548680769142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3990",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3990 accessories"
+ }
+ },
+ "system": "drone system 3990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53608155120139,
+ 39.044609734123014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3991",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3991 accessories"
+ }
+ },
+ "system": "drone system 3991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16902832373752,
+ 38.816329417282404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3992",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3992 accessories"
+ }
+ },
+ "system": "drone system 3992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14007673726738,
+ 38.72898661862174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3993",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3993 accessories"
+ }
+ },
+ "system": "drone system 3993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56980097479156,
+ 39.05817249775863
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3994",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3994 accessories"
+ }
+ },
+ "system": "drone system 3994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10068395485195,
+ 39.219457420385204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3995",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3995 accessories"
+ }
+ },
+ "system": "drone system 3995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09048529061509,
+ 38.96244218497317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3996",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3996 accessories"
+ }
+ },
+ "system": "drone system 3996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31284555238727,
+ 39.34215036642569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3997",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3997 accessories"
+ }
+ },
+ "system": "drone system 3997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13286523072377,
+ 38.772213404559025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3998",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3998 accessories"
+ }
+ },
+ "system": "drone system 3998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40760959568436,
+ 38.78574524416368
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone3999",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone3999 accessories"
+ }
+ },
+ "system": "drone system 3999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28839051961317,
+ 38.38399216554563
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4000",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4000 accessories"
+ }
+ },
+ "system": "drone system 4000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01639221928133,
+ 39.067728995844696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4001",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4001 accessories"
+ }
+ },
+ "system": "drone system 4001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6854677989944,
+ 38.95960220094261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4002",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4002 accessories"
+ }
+ },
+ "system": "drone system 4002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4745564431734,
+ 39.34958541104493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4003",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4003 accessories"
+ }
+ },
+ "system": "drone system 4003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46594874649956,
+ 38.14894865502561
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4004",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4004 accessories"
+ }
+ },
+ "system": "drone system 4004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90261262386828,
+ 39.14434739046611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4005",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4005 accessories"
+ }
+ },
+ "system": "drone system 4005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63102600626733,
+ 39.20302171894028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4006",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4006 accessories"
+ }
+ },
+ "system": "drone system 4006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82018199125312,
+ 39.729146827658624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4007",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4007 accessories"
+ }
+ },
+ "system": "drone system 4007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62887974099058,
+ 38.46392220729006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4008",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4008 accessories"
+ }
+ },
+ "system": "drone system 4008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65485260330485,
+ 39.16723783810673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4009",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4009 accessories"
+ }
+ },
+ "system": "drone system 4009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43723372556539,
+ 39.03791244622036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4010",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4010 accessories"
+ }
+ },
+ "system": "drone system 4010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5758606795439,
+ 38.36079570811178
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4011",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4011 accessories"
+ }
+ },
+ "system": "drone system 4011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99766607391028,
+ 38.31612939717928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4012",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4012 accessories"
+ }
+ },
+ "system": "drone system 4012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5660555831614,
+ 39.29373830547379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4013",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4013 accessories"
+ }
+ },
+ "system": "drone system 4013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31461846071896,
+ 39.278641669685406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4014",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4014 accessories"
+ }
+ },
+ "system": "drone system 4014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22060588027661,
+ 39.35813031866041
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4015",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4015 accessories"
+ }
+ },
+ "system": "drone system 4015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42277031708255,
+ 38.94281150181416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4016",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4016 accessories"
+ }
+ },
+ "system": "drone system 4016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81905742267399,
+ 39.11534428683792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4017",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4017 accessories"
+ }
+ },
+ "system": "drone system 4017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7560909833467,
+ 39.29234158669348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4018",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4018 accessories"
+ }
+ },
+ "system": "drone system 4018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42239261525441,
+ 39.034749835626236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4019",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4019 accessories"
+ }
+ },
+ "system": "drone system 4019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81417018529204,
+ 38.43982012101611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4020",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4020 accessories"
+ }
+ },
+ "system": "drone system 4020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18687562866458,
+ 39.772041251847845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4021",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4021 accessories"
+ }
+ },
+ "system": "drone system 4021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84942947881719,
+ 38.864285206715685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4022",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4022 accessories"
+ }
+ },
+ "system": "drone system 4022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62669148540691,
+ 38.565770419846494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4023",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4023 accessories"
+ }
+ },
+ "system": "drone system 4023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83836122150831,
+ 38.67615918944696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4024",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4024 accessories"
+ }
+ },
+ "system": "drone system 4024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57990922953468,
+ 39.08831081877428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4025",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4025 accessories"
+ }
+ },
+ "system": "drone system 4025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49907866382483,
+ 38.69281561588692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4026",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4026 accessories"
+ }
+ },
+ "system": "drone system 4026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57150825956059,
+ 39.400264449687135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4027",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4027 accessories"
+ }
+ },
+ "system": "drone system 4027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73157007114541,
+ 39.20410445627977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4028",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4028 accessories"
+ }
+ },
+ "system": "drone system 4028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93939508336756,
+ 38.124855937395424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4029",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4029 accessories"
+ }
+ },
+ "system": "drone system 4029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3483002533276,
+ 39.61631403827877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4030",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4030 accessories"
+ }
+ },
+ "system": "drone system 4030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99634057833215,
+ 38.14960509647784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4031",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4031 accessories"
+ }
+ },
+ "system": "drone system 4031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79340565741997,
+ 38.781134675997485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4032",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4032 accessories"
+ }
+ },
+ "system": "drone system 4032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8383219931226,
+ 38.49927646282039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4033",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4033 accessories"
+ }
+ },
+ "system": "drone system 4033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65302034269888,
+ 38.26455488541769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4034",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4034 accessories"
+ }
+ },
+ "system": "drone system 4034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84630900599637,
+ 39.141315265902676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4035",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4035 accessories"
+ }
+ },
+ "system": "drone system 4035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74122318169762,
+ 38.712195582094814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4036",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4036 accessories"
+ }
+ },
+ "system": "drone system 4036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6840944665676,
+ 38.82555655629429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4037",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4037 accessories"
+ }
+ },
+ "system": "drone system 4037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14505664955219,
+ 38.39603704712965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4038",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4038 accessories"
+ }
+ },
+ "system": "drone system 4038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05678671653645,
+ 39.38220065882786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4039",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4039 accessories"
+ }
+ },
+ "system": "drone system 4039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2661296830817,
+ 39.031509374160215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4040",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4040 accessories"
+ }
+ },
+ "system": "drone system 4040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72611139719668,
+ 38.62805915645614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4041",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4041 accessories"
+ }
+ },
+ "system": "drone system 4041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01873433499662,
+ 39.3233114053102
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4042",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4042 accessories"
+ }
+ },
+ "system": "drone system 4042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24010742032878,
+ 38.195978191643654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4043",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4043 accessories"
+ }
+ },
+ "system": "drone system 4043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67326997213137,
+ 38.737689177616005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4044",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4044 accessories"
+ }
+ },
+ "system": "drone system 4044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71272871977813,
+ 39.2178784539091
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4045",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4045 accessories"
+ }
+ },
+ "system": "drone system 4045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55124588612412,
+ 38.55586329329304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4046",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4046 accessories"
+ }
+ },
+ "system": "drone system 4046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17789208807382,
+ 38.24026683833808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4047",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4047 accessories"
+ }
+ },
+ "system": "drone system 4047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5575166025914,
+ 39.115358992318896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4048",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4048 accessories"
+ }
+ },
+ "system": "drone system 4048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17274151989895,
+ 39.088846583831995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4049",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4049 accessories"
+ }
+ },
+ "system": "drone system 4049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01643581552219,
+ 38.09723677686615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4050",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4050 accessories"
+ }
+ },
+ "system": "drone system 4050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88870320659551,
+ 38.65861806323838
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4051",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4051 accessories"
+ }
+ },
+ "system": "drone system 4051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5517856880149,
+ 38.50156289647629
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4052",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4052 accessories"
+ }
+ },
+ "system": "drone system 4052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16710049956798,
+ 39.087066605201855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4053",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4053 accessories"
+ }
+ },
+ "system": "drone system 4053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52198604404913,
+ 39.34316214677749
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4054",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4054 accessories"
+ }
+ },
+ "system": "drone system 4054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30117630455877,
+ 39.453035852148375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4055",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4055 accessories"
+ }
+ },
+ "system": "drone system 4055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61466477942619,
+ 39.25413097643918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4056",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4056 accessories"
+ }
+ },
+ "system": "drone system 4056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56179898953917,
+ 38.38403830457417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4057",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4057 accessories"
+ }
+ },
+ "system": "drone system 4057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34010094721215,
+ 39.037679396027194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4058",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4058 accessories"
+ }
+ },
+ "system": "drone system 4058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0855412125781,
+ 38.919393699148294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4059",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4059 accessories"
+ }
+ },
+ "system": "drone system 4059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88821906631162,
+ 38.96214970931002
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4060",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4060 accessories"
+ }
+ },
+ "system": "drone system 4060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58811186713578,
+ 39.40502814795811
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4061",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4061 accessories"
+ }
+ },
+ "system": "drone system 4061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33711776782827,
+ 39.194203005407296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4062",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4062 accessories"
+ }
+ },
+ "system": "drone system 4062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23623892281887,
+ 38.58978859503228
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4063",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4063 accessories"
+ }
+ },
+ "system": "drone system 4063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31640752112708,
+ 38.850127411765705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4064",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4064 accessories"
+ }
+ },
+ "system": "drone system 4064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51868039392757,
+ 39.091036856861244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4065",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4065 accessories"
+ }
+ },
+ "system": "drone system 4065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23078548770509,
+ 38.74544863094917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4066",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4066 accessories"
+ }
+ },
+ "system": "drone system 4066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86060122317595,
+ 38.8848227320988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4067",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4067 accessories"
+ }
+ },
+ "system": "drone system 4067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91152968075191,
+ 38.51329732533538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4068",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4068 accessories"
+ }
+ },
+ "system": "drone system 4068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54378958909798,
+ 39.49450133676631
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4069",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4069 accessories"
+ }
+ },
+ "system": "drone system 4069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7847372458743,
+ 38.8957242514765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4070",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4070 accessories"
+ }
+ },
+ "system": "drone system 4070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75167090363712,
+ 39.43663784936273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4071",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4071 accessories"
+ }
+ },
+ "system": "drone system 4071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51531716413831,
+ 39.24883489944529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4072",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4072 accessories"
+ }
+ },
+ "system": "drone system 4072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09383255333054,
+ 38.521490589846536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4073",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4073 accessories"
+ }
+ },
+ "system": "drone system 4073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1776069188282,
+ 39.01918686948298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4074",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4074 accessories"
+ }
+ },
+ "system": "drone system 4074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48868932118643,
+ 38.13262081820299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4075",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4075 accessories"
+ }
+ },
+ "system": "drone system 4075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9947239713607,
+ 38.59458604967549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4076",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4076 accessories"
+ }
+ },
+ "system": "drone system 4076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02017598189892,
+ 39.25102094246188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4077",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4077 accessories"
+ }
+ },
+ "system": "drone system 4077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88280241802359,
+ 38.86472528865737
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4078",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4078 accessories"
+ }
+ },
+ "system": "drone system 4078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17698924093177,
+ 38.864867058276275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4079",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4079 accessories"
+ }
+ },
+ "system": "drone system 4079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29420069466099,
+ 38.07988396470116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4080",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4080 accessories"
+ }
+ },
+ "system": "drone system 4080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20727983707854,
+ 39.20638930472107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4081",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4081 accessories"
+ }
+ },
+ "system": "drone system 4081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58570773253065,
+ 38.31947944417816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4082",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4082 accessories"
+ }
+ },
+ "system": "drone system 4082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32904275682674,
+ 38.675947084425495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4083",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4083 accessories"
+ }
+ },
+ "system": "drone system 4083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41524421843387,
+ 39.33560179552047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4084",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4084 accessories"
+ }
+ },
+ "system": "drone system 4084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44427553456543,
+ 38.59340241910912
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4085",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4085 accessories"
+ }
+ },
+ "system": "drone system 4085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92986431357379,
+ 39.36156193327147
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4086",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4086 accessories"
+ }
+ },
+ "system": "drone system 4086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33497966386679,
+ 38.41920627780233
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4087",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4087 accessories"
+ }
+ },
+ "system": "drone system 4087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37862687490659,
+ 38.748891893605375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4088",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4088 accessories"
+ }
+ },
+ "system": "drone system 4088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67659909039543,
+ 39.49887696455111
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4089",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4089 accessories"
+ }
+ },
+ "system": "drone system 4089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61846029057263,
+ 39.57889891491258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4090",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4090 accessories"
+ }
+ },
+ "system": "drone system 4090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69461441978058,
+ 38.306609253884595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4091",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4091 accessories"
+ }
+ },
+ "system": "drone system 4091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21933126287735,
+ 38.509920698248564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4092",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4092 accessories"
+ }
+ },
+ "system": "drone system 4092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94689118237166,
+ 39.017176677794765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4093",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4093 accessories"
+ }
+ },
+ "system": "drone system 4093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47393818289453,
+ 38.3685438995409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4094",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4094 accessories"
+ }
+ },
+ "system": "drone system 4094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81692851038531,
+ 39.746435666665064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4095",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4095 accessories"
+ }
+ },
+ "system": "drone system 4095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17061041090989,
+ 38.3464563898156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4096",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4096 accessories"
+ }
+ },
+ "system": "drone system 4096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20109808796107,
+ 38.12314233383758
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4097",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4097 accessories"
+ }
+ },
+ "system": "drone system 4097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75233836246026,
+ 39.065682806273806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4098",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4098 accessories"
+ }
+ },
+ "system": "drone system 4098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53527287928469,
+ 38.52318129319218
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4099",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4099 accessories"
+ }
+ },
+ "system": "drone system 4099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1563863494813,
+ 38.75310846951763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4100",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4100 accessories"
+ }
+ },
+ "system": "drone system 4100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07914319702284,
+ 38.74454078078704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4101",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4101 accessories"
+ }
+ },
+ "system": "drone system 4101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73326057559498,
+ 38.4261265630323
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4102",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4102 accessories"
+ }
+ },
+ "system": "drone system 4102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94134051725139,
+ 38.84439374298164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4103",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4103 accessories"
+ }
+ },
+ "system": "drone system 4103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95466188473982,
+ 38.68818889620414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4104",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4104 accessories"
+ }
+ },
+ "system": "drone system 4104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81588738951758,
+ 38.63918176995926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4105",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4105 accessories"
+ }
+ },
+ "system": "drone system 4105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28477863778393,
+ 38.10040107830798
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4106",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4106 accessories"
+ }
+ },
+ "system": "drone system 4106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02704182816899,
+ 39.754100166807476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4107",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4107 accessories"
+ }
+ },
+ "system": "drone system 4107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7650999950008,
+ 38.789994257852655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4108",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4108 accessories"
+ }
+ },
+ "system": "drone system 4108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44138405755893,
+ 39.24030314224735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4109",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4109 accessories"
+ }
+ },
+ "system": "drone system 4109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61929152439549,
+ 38.83204637963328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4110",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4110 accessories"
+ }
+ },
+ "system": "drone system 4110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31986555996704,
+ 38.89444316847392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4111",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4111 accessories"
+ }
+ },
+ "system": "drone system 4111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03761260359508,
+ 38.282972685106955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4112",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4112 accessories"
+ }
+ },
+ "system": "drone system 4112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35476780512596,
+ 39.19119640534916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4113",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4113 accessories"
+ }
+ },
+ "system": "drone system 4113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54252858420564,
+ 38.31869681238697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4114",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4114 accessories"
+ }
+ },
+ "system": "drone system 4114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84974296176922,
+ 39.012501798209655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4115",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4115 accessories"
+ }
+ },
+ "system": "drone system 4115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72575157348659,
+ 39.49664220363669
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4116",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4116 accessories"
+ }
+ },
+ "system": "drone system 4116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46021455330127,
+ 38.77357033652772
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4117",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4117 accessories"
+ }
+ },
+ "system": "drone system 4117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62541814133417,
+ 38.42929934634077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4118",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4118 accessories"
+ }
+ },
+ "system": "drone system 4118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9140730372748,
+ 39.45350932846035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4119",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4119 accessories"
+ }
+ },
+ "system": "drone system 4119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50269450619359,
+ 39.387682042569494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4120",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4120 accessories"
+ }
+ },
+ "system": "drone system 4120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31082553383088,
+ 39.06970691442605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4121",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4121 accessories"
+ }
+ },
+ "system": "drone system 4121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59067660942884,
+ 39.01436165043949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4122",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4122 accessories"
+ }
+ },
+ "system": "drone system 4122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4333836334437,
+ 39.053517330961164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4123",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4123 accessories"
+ }
+ },
+ "system": "drone system 4123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19597628030589,
+ 38.906757340834986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4124",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4124 accessories"
+ }
+ },
+ "system": "drone system 4124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9799311477532,
+ 38.121880311255374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4125",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4125 accessories"
+ }
+ },
+ "system": "drone system 4125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55784305566222,
+ 39.126616189794035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4126",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4126 accessories"
+ }
+ },
+ "system": "drone system 4126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04276217576363,
+ 39.11640888103712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4127",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4127 accessories"
+ }
+ },
+ "system": "drone system 4127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18263267545923,
+ 38.34745654040084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4128",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4128 accessories"
+ }
+ },
+ "system": "drone system 4128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9953128949942,
+ 38.91700882294142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4129",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4129 accessories"
+ }
+ },
+ "system": "drone system 4129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26799879236877,
+ 39.009004918969225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4130",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4130 accessories"
+ }
+ },
+ "system": "drone system 4130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32004919860404,
+ 39.04012467131379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4131",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4131 accessories"
+ }
+ },
+ "system": "drone system 4131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84750690040384,
+ 39.030287238566785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4132",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4132 accessories"
+ }
+ },
+ "system": "drone system 4132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0569740034779,
+ 38.678921555572344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4133",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4133 accessories"
+ }
+ },
+ "system": "drone system 4133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4463237378948,
+ 39.5298937394419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4134",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4134 accessories"
+ }
+ },
+ "system": "drone system 4134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59951375553605,
+ 38.97864781629043
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4135",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4135 accessories"
+ }
+ },
+ "system": "drone system 4135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15661878271432,
+ 39.70918041065677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4136",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4136 accessories"
+ }
+ },
+ "system": "drone system 4136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61843701027244,
+ 39.58971470755405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4137",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4137 accessories"
+ }
+ },
+ "system": "drone system 4137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82442575415793,
+ 39.1766212112433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4138",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4138 accessories"
+ }
+ },
+ "system": "drone system 4138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39339563877905,
+ 38.411688955884166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4139",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4139 accessories"
+ }
+ },
+ "system": "drone system 4139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70666040925505,
+ 39.08243501807696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4140",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4140 accessories"
+ }
+ },
+ "system": "drone system 4140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67406034642275,
+ 38.592806784581
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4141",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4141 accessories"
+ }
+ },
+ "system": "drone system 4141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13520184442605,
+ 38.536545303113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4142",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4142 accessories"
+ }
+ },
+ "system": "drone system 4142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70931949272175,
+ 38.1768159308916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4143",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4143 accessories"
+ }
+ },
+ "system": "drone system 4143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02466033045472,
+ 39.77932274641057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4144",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4144 accessories"
+ }
+ },
+ "system": "drone system 4144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94657455495032,
+ 38.184501510714455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4145",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4145 accessories"
+ }
+ },
+ "system": "drone system 4145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.897750161708,
+ 39.72355787859391
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4146",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4146 accessories"
+ }
+ },
+ "system": "drone system 4146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86929102881794,
+ 39.31873052841341
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4147",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4147 accessories"
+ }
+ },
+ "system": "drone system 4147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2357256591086,
+ 39.09956910766611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4148",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4148 accessories"
+ }
+ },
+ "system": "drone system 4148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62101982795443,
+ 39.29157639981485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4149",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4149 accessories"
+ }
+ },
+ "system": "drone system 4149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53030111203054,
+ 39.00150575175602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4150",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4150 accessories"
+ }
+ },
+ "system": "drone system 4150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5391427642149,
+ 39.589534314927256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4151",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4151 accessories"
+ }
+ },
+ "system": "drone system 4151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89764036535877,
+ 38.83749834137257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4152",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4152 accessories"
+ }
+ },
+ "system": "drone system 4152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78729163695492,
+ 38.701788371046575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4153",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4153 accessories"
+ }
+ },
+ "system": "drone system 4153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61296946995691,
+ 39.542344190840936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4154",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4154 accessories"
+ }
+ },
+ "system": "drone system 4154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39545322977575,
+ 38.98981644416079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4155",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4155 accessories"
+ }
+ },
+ "system": "drone system 4155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90338989295414,
+ 39.11081879087139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4156",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4156 accessories"
+ }
+ },
+ "system": "drone system 4156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79817445667861,
+ 38.862841471689485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4157",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4157 accessories"
+ }
+ },
+ "system": "drone system 4157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55520638275831,
+ 38.18122534339803
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4158",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4158 accessories"
+ }
+ },
+ "system": "drone system 4158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75970730385676,
+ 39.24325971716478
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4159",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4159 accessories"
+ }
+ },
+ "system": "drone system 4159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31343997423879,
+ 39.480593421013005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4160",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4160 accessories"
+ }
+ },
+ "system": "drone system 4160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2583659616309,
+ 39.18846341400413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4161",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4161 accessories"
+ }
+ },
+ "system": "drone system 4161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8216916144394,
+ 38.968962477796246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4162",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4162 accessories"
+ }
+ },
+ "system": "drone system 4162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07448795425016,
+ 39.28535863577673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4163",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4163 accessories"
+ }
+ },
+ "system": "drone system 4163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1546633812163,
+ 38.727849276691416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4164",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4164 accessories"
+ }
+ },
+ "system": "drone system 4164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73754643782269,
+ 39.2472095221911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4165",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4165 accessories"
+ }
+ },
+ "system": "drone system 4165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97400184448664,
+ 38.38972628701006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4166",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4166 accessories"
+ }
+ },
+ "system": "drone system 4166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52312463430158,
+ 38.934243863552716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4167",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4167 accessories"
+ }
+ },
+ "system": "drone system 4167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70487528524913,
+ 39.274098637762926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4168",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4168 accessories"
+ }
+ },
+ "system": "drone system 4168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9182814533829,
+ 38.869875254685375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4169",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4169 accessories"
+ }
+ },
+ "system": "drone system 4169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32919976536142,
+ 38.63613743438252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4170",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4170 accessories"
+ }
+ },
+ "system": "drone system 4170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56231208401984,
+ 38.479398381481815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4171",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4171 accessories"
+ }
+ },
+ "system": "drone system 4171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.143039798316,
+ 38.4569939644724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4172",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4172 accessories"
+ }
+ },
+ "system": "drone system 4172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92887456472376,
+ 39.308861683858204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4173",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4173 accessories"
+ }
+ },
+ "system": "drone system 4173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81880845384485,
+ 39.09980474112928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4174",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4174 accessories"
+ }
+ },
+ "system": "drone system 4174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2437664124175,
+ 38.13538723827247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4175",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4175 accessories"
+ }
+ },
+ "system": "drone system 4175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64261314552392,
+ 38.847912221561025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4176",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4176 accessories"
+ }
+ },
+ "system": "drone system 4176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72312514439015,
+ 39.40458767722882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4177",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4177 accessories"
+ }
+ },
+ "system": "drone system 4177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18376784874563,
+ 38.92252160469527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4178",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4178 accessories"
+ }
+ },
+ "system": "drone system 4178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22334935286429,
+ 39.488203297798485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4179 accessories"
+ }
+ },
+ "system": "drone system 4179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20874825773043,
+ 38.749835759239055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4180",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4180 accessories"
+ }
+ },
+ "system": "drone system 4180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30309910389408,
+ 39.22365731203563
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4181",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4181 accessories"
+ }
+ },
+ "system": "drone system 4181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8270813605298,
+ 38.64588073357023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4182",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4182 accessories"
+ }
+ },
+ "system": "drone system 4182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68918939264829,
+ 39.22466458216538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4183",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4183 accessories"
+ }
+ },
+ "system": "drone system 4183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22707960221923,
+ 38.18648250902036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4184",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4184 accessories"
+ }
+ },
+ "system": "drone system 4184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41990625210866,
+ 39.56160689674786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4185",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4185 accessories"
+ }
+ },
+ "system": "drone system 4185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67986448788244,
+ 39.680465769607764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4186",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4186 accessories"
+ }
+ },
+ "system": "drone system 4186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24343768830585,
+ 38.911176163897174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4187",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4187 accessories"
+ }
+ },
+ "system": "drone system 4187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67494942081397,
+ 39.29150095849607
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4188",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4188 accessories"
+ }
+ },
+ "system": "drone system 4188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86405249065268,
+ 39.01112490863492
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4189",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4189 accessories"
+ }
+ },
+ "system": "drone system 4189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88178267554362,
+ 39.53265138522199
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4190 accessories"
+ }
+ },
+ "system": "drone system 4190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46567184150614,
+ 39.11922643220263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4191",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4191 accessories"
+ }
+ },
+ "system": "drone system 4191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9725526323282,
+ 38.134659035877995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4192",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4192 accessories"
+ }
+ },
+ "system": "drone system 4192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67005203463225,
+ 38.393367126750725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4193",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4193 accessories"
+ }
+ },
+ "system": "drone system 4193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87280820727841,
+ 38.20820945997703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4194",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4194 accessories"
+ }
+ },
+ "system": "drone system 4194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39877391112965,
+ 38.34632679304059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4195",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4195 accessories"
+ }
+ },
+ "system": "drone system 4195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81805739916771,
+ 38.22234297086524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4196",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4196 accessories"
+ }
+ },
+ "system": "drone system 4196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35220307568926,
+ 39.2570822923392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4197",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4197 accessories"
+ }
+ },
+ "system": "drone system 4197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5951174788096,
+ 39.087066066772145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4198",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4198 accessories"
+ }
+ },
+ "system": "drone system 4198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53430274736577,
+ 38.72617976485172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4199",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4199 accessories"
+ }
+ },
+ "system": "drone system 4199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42254817246294,
+ 38.376669557870756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4200",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4200 accessories"
+ }
+ },
+ "system": "drone system 4200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20678191926224,
+ 38.595318311339156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4201",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4201 accessories"
+ }
+ },
+ "system": "drone system 4201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40350417932436,
+ 39.1820475120906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4202",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4202 accessories"
+ }
+ },
+ "system": "drone system 4202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69158475197193,
+ 38.1878452436812
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4203",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4203 accessories"
+ }
+ },
+ "system": "drone system 4203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44440316692393,
+ 38.38396973649976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4204",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4204 accessories"
+ }
+ },
+ "system": "drone system 4204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9794812876373,
+ 38.2140185607637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4205",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4205 accessories"
+ }
+ },
+ "system": "drone system 4205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00155110669736,
+ 38.31388601843273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4206",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4206 accessories"
+ }
+ },
+ "system": "drone system 4206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75519391507959,
+ 38.09042149906711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4207",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4207 accessories"
+ }
+ },
+ "system": "drone system 4207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32568946763388,
+ 39.31394601324235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4208",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4208 accessories"
+ }
+ },
+ "system": "drone system 4208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94210627341363,
+ 38.54012641518681
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4209",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4209 accessories"
+ }
+ },
+ "system": "drone system 4209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14817562141532,
+ 39.788919838205295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4210",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4210 accessories"
+ }
+ },
+ "system": "drone system 4210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66994558637116,
+ 39.27020593949278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4211",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4211 accessories"
+ }
+ },
+ "system": "drone system 4211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94117555672923,
+ 38.14973269595828
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4212",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4212 accessories"
+ }
+ },
+ "system": "drone system 4212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52589487052586,
+ 39.03770042197479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4213",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4213 accessories"
+ }
+ },
+ "system": "drone system 4213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48657211576786,
+ 39.59304813594641
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4214",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4214 accessories"
+ }
+ },
+ "system": "drone system 4214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60146967358149,
+ 38.52662885365959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4215",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4215 accessories"
+ }
+ },
+ "system": "drone system 4215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1128097888466,
+ 39.772779456257425
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4216",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4216 accessories"
+ }
+ },
+ "system": "drone system 4216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52560038549244,
+ 39.14855424895958
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4217",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4217 accessories"
+ }
+ },
+ "system": "drone system 4217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92108004224173,
+ 38.9560672487917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4218",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4218 accessories"
+ }
+ },
+ "system": "drone system 4218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4714977306018,
+ 38.51665266226071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4219",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4219 accessories"
+ }
+ },
+ "system": "drone system 4219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40959051681031,
+ 39.19492655912675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4220",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4220 accessories"
+ }
+ },
+ "system": "drone system 4220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94317370706179,
+ 39.15598049089264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4221",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4221 accessories"
+ }
+ },
+ "system": "drone system 4221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07135382859805,
+ 39.00574629830887
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4222",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4222 accessories"
+ }
+ },
+ "system": "drone system 4222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92353787453813,
+ 39.27231519535326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4223",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4223 accessories"
+ }
+ },
+ "system": "drone system 4223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5927075321285,
+ 38.384515959714044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4224",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4224 accessories"
+ }
+ },
+ "system": "drone system 4224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99817270017843,
+ 38.85663224335649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4225",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4225 accessories"
+ }
+ },
+ "system": "drone system 4225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19010396467182,
+ 38.58018982148249
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4226",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4226 accessories"
+ }
+ },
+ "system": "drone system 4226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80792875397668,
+ 38.81898197646779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4227",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4227 accessories"
+ }
+ },
+ "system": "drone system 4227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87033822878865,
+ 38.86777112686242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4228",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4228 accessories"
+ }
+ },
+ "system": "drone system 4228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52186083191579,
+ 38.9225991511266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4229",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4229 accessories"
+ }
+ },
+ "system": "drone system 4229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55228515405886,
+ 38.20156576388935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4230",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4230 accessories"
+ }
+ },
+ "system": "drone system 4230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28415134108417,
+ 39.69513305696461
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4231",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4231 accessories"
+ }
+ },
+ "system": "drone system 4231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05140670815094,
+ 39.44029843489962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4232",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4232 accessories"
+ }
+ },
+ "system": "drone system 4232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68656374879725,
+ 39.28186573609624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4233",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4233 accessories"
+ }
+ },
+ "system": "drone system 4233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75785950029554,
+ 38.28783771893266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4234",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4234 accessories"
+ }
+ },
+ "system": "drone system 4234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56903290395685,
+ 38.844703344972196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4235",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4235 accessories"
+ }
+ },
+ "system": "drone system 4235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72179334835728,
+ 38.450995581604126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4236",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4236 accessories"
+ }
+ },
+ "system": "drone system 4236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10590265643667,
+ 38.229277535494525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4237",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4237 accessories"
+ }
+ },
+ "system": "drone system 4237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56038138973702,
+ 38.71110791472937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4238",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4238 accessories"
+ }
+ },
+ "system": "drone system 4238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77886529057987,
+ 38.68681171151608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4239 accessories"
+ }
+ },
+ "system": "drone system 4239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6891204000126,
+ 38.36900997547288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4240",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4240 accessories"
+ }
+ },
+ "system": "drone system 4240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4386561677472,
+ 38.9182944909429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4241",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4241 accessories"
+ }
+ },
+ "system": "drone system 4241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85712197499242,
+ 38.09774172690923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4242",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4242 accessories"
+ }
+ },
+ "system": "drone system 4242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61971876172747,
+ 38.33990949428881
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4243",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4243 accessories"
+ }
+ },
+ "system": "drone system 4243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21683362393969,
+ 39.4460796904432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4244",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4244 accessories"
+ }
+ },
+ "system": "drone system 4244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21769640916033,
+ 38.60192085294543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4245",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4245 accessories"
+ }
+ },
+ "system": "drone system 4245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7195331806392,
+ 38.37088270293992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4246",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4246 accessories"
+ }
+ },
+ "system": "drone system 4246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08705752533119,
+ 39.19557225939927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4247",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4247 accessories"
+ }
+ },
+ "system": "drone system 4247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8568159167305,
+ 39.50923091829361
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4248",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4248 accessories"
+ }
+ },
+ "system": "drone system 4248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21316200639242,
+ 38.89201811692903
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4249",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4249 accessories"
+ }
+ },
+ "system": "drone system 4249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83210807331554,
+ 38.30896077372019
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4250",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4250 accessories"
+ }
+ },
+ "system": "drone system 4250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61294636260129,
+ 39.21675613552302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4251",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4251 accessories"
+ }
+ },
+ "system": "drone system 4251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88066738951153,
+ 38.04415842457456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4252",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4252 accessories"
+ }
+ },
+ "system": "drone system 4252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83715506890145,
+ 38.30045489909108
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4253",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4253 accessories"
+ }
+ },
+ "system": "drone system 4253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40158762001253,
+ 39.26670794640333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4254",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4254 accessories"
+ }
+ },
+ "system": "drone system 4254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46995041783971,
+ 39.62432578742481
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4255",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4255 accessories"
+ }
+ },
+ "system": "drone system 4255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90606440573193,
+ 38.86953567478194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4256",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4256 accessories"
+ }
+ },
+ "system": "drone system 4256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71565062570362,
+ 38.24310581882583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4257",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4257 accessories"
+ }
+ },
+ "system": "drone system 4257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44660151268764,
+ 39.28889572533874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4258",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4258 accessories"
+ }
+ },
+ "system": "drone system 4258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4932528531036,
+ 39.23432434322456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4259",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4259 accessories"
+ }
+ },
+ "system": "drone system 4259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63503736262868,
+ 38.27694535044701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4260",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4260 accessories"
+ }
+ },
+ "system": "drone system 4260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50277062221123,
+ 39.41712176424905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4261",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4261 accessories"
+ }
+ },
+ "system": "drone system 4261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13897680851713,
+ 39.6889328756652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4262",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4262 accessories"
+ }
+ },
+ "system": "drone system 4262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41001596487465,
+ 38.685217376485944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4263",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4263 accessories"
+ }
+ },
+ "system": "drone system 4263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37250032881401,
+ 38.77979778331279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4264",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4264 accessories"
+ }
+ },
+ "system": "drone system 4264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51958410363812,
+ 39.092117829880465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4265",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4265 accessories"
+ }
+ },
+ "system": "drone system 4265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50936681892773,
+ 38.555270754094984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4266",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4266 accessories"
+ }
+ },
+ "system": "drone system 4266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1975265206363,
+ 38.90244986857879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4267",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4267 accessories"
+ }
+ },
+ "system": "drone system 4267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24172903307928,
+ 38.68044024748453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4268",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4268 accessories"
+ }
+ },
+ "system": "drone system 4268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11146587190954,
+ 39.56195342121301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4269",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4269 accessories"
+ }
+ },
+ "system": "drone system 4269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5183303540921,
+ 38.584854278839444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4270",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4270 accessories"
+ }
+ },
+ "system": "drone system 4270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45671140927145,
+ 39.06662384654322
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4271",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4271 accessories"
+ }
+ },
+ "system": "drone system 4271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52029544329845,
+ 38.474789434080584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4272",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4272 accessories"
+ }
+ },
+ "system": "drone system 4272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40965763076737,
+ 39.3580360138827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4273",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4273 accessories"
+ }
+ },
+ "system": "drone system 4273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69124126176715,
+ 38.59962551117714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4274",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4274 accessories"
+ }
+ },
+ "system": "drone system 4274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64914318375672,
+ 39.48347672339103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4275",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4275 accessories"
+ }
+ },
+ "system": "drone system 4275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07096821515212,
+ 39.167262447066896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4276",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4276 accessories"
+ }
+ },
+ "system": "drone system 4276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66031004539207,
+ 39.175723073323944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4277",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4277 accessories"
+ }
+ },
+ "system": "drone system 4277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32366915206318,
+ 38.14575518299055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4278",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4278 accessories"
+ }
+ },
+ "system": "drone system 4278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78774681586657,
+ 39.01049173049681
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4279",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4279 accessories"
+ }
+ },
+ "system": "drone system 4279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2671988124421,
+ 38.83609102436435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4280",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4280 accessories"
+ }
+ },
+ "system": "drone system 4280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75791075581732,
+ 38.93948214459656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4281",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4281 accessories"
+ }
+ },
+ "system": "drone system 4281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57515726457952,
+ 39.32449991515375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4282",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4282 accessories"
+ }
+ },
+ "system": "drone system 4282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57362581027898,
+ 39.578564315172166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4283",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4283 accessories"
+ }
+ },
+ "system": "drone system 4283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29122291306491,
+ 39.070609718624155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4284",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4284 accessories"
+ }
+ },
+ "system": "drone system 4284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66346760168965,
+ 38.86348968009281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4285",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4285 accessories"
+ }
+ },
+ "system": "drone system 4285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7739024824331,
+ 38.7702463697344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4286",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4286 accessories"
+ }
+ },
+ "system": "drone system 4286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12674544112843,
+ 38.622700623580535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4287",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4287 accessories"
+ }
+ },
+ "system": "drone system 4287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80761451262642,
+ 38.92435664522749
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4288",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4288 accessories"
+ }
+ },
+ "system": "drone system 4288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91762522723006,
+ 38.217923287455086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4289",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4289 accessories"
+ }
+ },
+ "system": "drone system 4289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7756082210024,
+ 38.120630156035844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4290",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4290 accessories"
+ }
+ },
+ "system": "drone system 4290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31793415935542,
+ 39.22586331527979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4291",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4291 accessories"
+ }
+ },
+ "system": "drone system 4291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30674162452529,
+ 39.16918436218857
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4292",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4292 accessories"
+ }
+ },
+ "system": "drone system 4292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12528965516539,
+ 38.64257812400244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4293",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4293 accessories"
+ }
+ },
+ "system": "drone system 4293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34231570044358,
+ 38.65441402630197
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4294",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4294 accessories"
+ }
+ },
+ "system": "drone system 4294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76015605361947,
+ 39.443288847929566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4295",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4295 accessories"
+ }
+ },
+ "system": "drone system 4295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69758223193851,
+ 38.65550819172315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4296",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4296 accessories"
+ }
+ },
+ "system": "drone system 4296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3235535473388,
+ 38.862481822305945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4297",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4297 accessories"
+ }
+ },
+ "system": "drone system 4297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54784011953976,
+ 38.89569726580062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4298",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4298 accessories"
+ }
+ },
+ "system": "drone system 4298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41355949341228,
+ 38.47736229986436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4299",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4299 accessories"
+ }
+ },
+ "system": "drone system 4299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46205152887092,
+ 38.565494131002254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4300",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4300 accessories"
+ }
+ },
+ "system": "drone system 4300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05606901952999,
+ 39.758362554037866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4301",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4301 accessories"
+ }
+ },
+ "system": "drone system 4301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25840124693322,
+ 38.71887406805266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4302",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4302 accessories"
+ }
+ },
+ "system": "drone system 4302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65744042088522,
+ 39.368533372211935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4303",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4303 accessories"
+ }
+ },
+ "system": "drone system 4303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29188187380252,
+ 39.58409327469936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4304",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4304 accessories"
+ }
+ },
+ "system": "drone system 4304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27962528280605,
+ 39.16539899905652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4305",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4305 accessories"
+ }
+ },
+ "system": "drone system 4305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82592110548946,
+ 38.55125802426677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4306",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4306 accessories"
+ }
+ },
+ "system": "drone system 4306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18432088427164,
+ 38.849895664073955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4307",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4307 accessories"
+ }
+ },
+ "system": "drone system 4307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18900712513637,
+ 38.6224656218713
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4308",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4308 accessories"
+ }
+ },
+ "system": "drone system 4308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15991439052118,
+ 38.893241636721655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4309",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4309 accessories"
+ }
+ },
+ "system": "drone system 4309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54328529721926,
+ 38.274846949339675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4310",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4310 accessories"
+ }
+ },
+ "system": "drone system 4310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37323209588591,
+ 39.41859323373092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4311",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4311 accessories"
+ }
+ },
+ "system": "drone system 4311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44937342289506,
+ 39.34826615511453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4312",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4312 accessories"
+ }
+ },
+ "system": "drone system 4312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6906510609179,
+ 39.4913169676269
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4313 accessories"
+ }
+ },
+ "system": "drone system 4313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84093548027604,
+ 38.93369321204871
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4314",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4314 accessories"
+ }
+ },
+ "system": "drone system 4314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57824032711858,
+ 38.234548128936325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4315",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4315 accessories"
+ }
+ },
+ "system": "drone system 4315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08591749057702,
+ 38.08947419130764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4316",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4316 accessories"
+ }
+ },
+ "system": "drone system 4316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17293723341066,
+ 38.7320259955051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4317",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4317 accessories"
+ }
+ },
+ "system": "drone system 4317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8659141590543,
+ 38.91915721983
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4318",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4318 accessories"
+ }
+ },
+ "system": "drone system 4318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.14773517728041,
+ 39.00307809581121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4319",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4319 accessories"
+ }
+ },
+ "system": "drone system 4319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0493408549256,
+ 38.090390304360206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4320",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4320 accessories"
+ }
+ },
+ "system": "drone system 4320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26647908625372,
+ 39.31928006358737
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4321",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4321 accessories"
+ }
+ },
+ "system": "drone system 4321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02628326490901,
+ 39.37147546248152
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4322",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4322 accessories"
+ }
+ },
+ "system": "drone system 4322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51425637916078,
+ 38.562981145668175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4323",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4323 accessories"
+ }
+ },
+ "system": "drone system 4323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99647757826345,
+ 38.436725042965485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4324",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4324 accessories"
+ }
+ },
+ "system": "drone system 4324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04093414679792,
+ 38.27688944458583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4325",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4325 accessories"
+ }
+ },
+ "system": "drone system 4325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67004776527196,
+ 38.48372890618579
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4326",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4326 accessories"
+ }
+ },
+ "system": "drone system 4326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43707674162428,
+ 39.52015082678724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4327",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4327 accessories"
+ }
+ },
+ "system": "drone system 4327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67828375424517,
+ 39.01321319399963
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4328",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4328 accessories"
+ }
+ },
+ "system": "drone system 4328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45521216260634,
+ 38.42089848407637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4329",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4329 accessories"
+ }
+ },
+ "system": "drone system 4329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00580091891142,
+ 39.69149229018042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4330",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4330 accessories"
+ }
+ },
+ "system": "drone system 4330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15242889909348,
+ 38.757178546314634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4331",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4331 accessories"
+ }
+ },
+ "system": "drone system 4331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40646149119264,
+ 38.61181755494759
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4332",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4332 accessories"
+ }
+ },
+ "system": "drone system 4332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6150347432178,
+ 38.11826805105141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4333",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4333 accessories"
+ }
+ },
+ "system": "drone system 4333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64429051347312,
+ 38.10420119539338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4334",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4334 accessories"
+ }
+ },
+ "system": "drone system 4334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31041713268667,
+ 39.19640576882875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4335",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4335 accessories"
+ }
+ },
+ "system": "drone system 4335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43630696829788,
+ 38.556613854955636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4336",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4336 accessories"
+ }
+ },
+ "system": "drone system 4336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73425332408493,
+ 38.6626499215539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4337",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4337 accessories"
+ }
+ },
+ "system": "drone system 4337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93508116632306,
+ 39.73868100912189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4338",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4338 accessories"
+ }
+ },
+ "system": "drone system 4338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82846498431176,
+ 38.97300967257731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4339",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4339 accessories"
+ }
+ },
+ "system": "drone system 4339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46903181663279,
+ 39.02044179363452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4340",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4340 accessories"
+ }
+ },
+ "system": "drone system 4340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13448457192413,
+ 38.57452035685072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4341",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4341 accessories"
+ }
+ },
+ "system": "drone system 4341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05346883238875,
+ 38.8245338081457
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4342",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4342 accessories"
+ }
+ },
+ "system": "drone system 4342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28600421412075,
+ 38.55564590768642
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4343",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4343 accessories"
+ }
+ },
+ "system": "drone system 4343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84430281579805,
+ 38.31137724016471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4344",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4344 accessories"
+ }
+ },
+ "system": "drone system 4344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84381346607482,
+ 38.736053696471366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4345",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4345 accessories"
+ }
+ },
+ "system": "drone system 4345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34281659012197,
+ 39.44962440770676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4346",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4346 accessories"
+ }
+ },
+ "system": "drone system 4346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89275272719182,
+ 38.40389200748164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4347",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4347 accessories"
+ }
+ },
+ "system": "drone system 4347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54685451398245,
+ 39.46208031784499
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4348",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4348 accessories"
+ }
+ },
+ "system": "drone system 4348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86139589564539,
+ 38.918808001230765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4349",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4349 accessories"
+ }
+ },
+ "system": "drone system 4349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5551312841373,
+ 39.196956135065726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4350",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4350 accessories"
+ }
+ },
+ "system": "drone system 4350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28152807895076,
+ 39.36216358122457
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4351",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4351 accessories"
+ }
+ },
+ "system": "drone system 4351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51954318198761,
+ 38.88010642788019
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4352",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4352 accessories"
+ }
+ },
+ "system": "drone system 4352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43467538954992,
+ 39.01883196675296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4353",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4353 accessories"
+ }
+ },
+ "system": "drone system 4353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38621609234475,
+ 39.61266886081703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4354",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4354 accessories"
+ }
+ },
+ "system": "drone system 4354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30998261329692,
+ 38.092947491117506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4355",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4355 accessories"
+ }
+ },
+ "system": "drone system 4355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98662088648261,
+ 38.834451765887714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4356",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4356 accessories"
+ }
+ },
+ "system": "drone system 4356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43915018374115,
+ 39.43420130008092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4357",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4357 accessories"
+ }
+ },
+ "system": "drone system 4357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65511228810433,
+ 38.94779586056698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4358 accessories"
+ }
+ },
+ "system": "drone system 4358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68140858780612,
+ 39.39666445438814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4359",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4359 accessories"
+ }
+ },
+ "system": "drone system 4359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51783914586498,
+ 39.56107378255518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4360",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4360 accessories"
+ }
+ },
+ "system": "drone system 4360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40308742265289,
+ 39.676339293112555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4361",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4361 accessories"
+ }
+ },
+ "system": "drone system 4361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47565644967926,
+ 39.48619075150364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4362",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4362 accessories"
+ }
+ },
+ "system": "drone system 4362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05874291674273,
+ 38.32592336902608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4363",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4363 accessories"
+ }
+ },
+ "system": "drone system 4363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31683603029546,
+ 38.55735207238694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4364",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4364 accessories"
+ }
+ },
+ "system": "drone system 4364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46104181044014,
+ 38.474342437270565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4365",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4365 accessories"
+ }
+ },
+ "system": "drone system 4365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81203764148943,
+ 38.788494079944826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4366",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4366 accessories"
+ }
+ },
+ "system": "drone system 4366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57805605551687,
+ 38.163562860532004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4367",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4367 accessories"
+ }
+ },
+ "system": "drone system 4367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59011844369674,
+ 38.75721655010726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4368",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4368 accessories"
+ }
+ },
+ "system": "drone system 4368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9725691920937,
+ 39.00738528481225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4369",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4369 accessories"
+ }
+ },
+ "system": "drone system 4369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55011672347364,
+ 38.92394340411496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4370 accessories"
+ }
+ },
+ "system": "drone system 4370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46829958838462,
+ 39.38673327949412
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4371",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4371 accessories"
+ }
+ },
+ "system": "drone system 4371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46450979224947,
+ 39.245320759282244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4372",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4372 accessories"
+ }
+ },
+ "system": "drone system 4372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75788802371939,
+ 38.6958807591301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4373",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4373 accessories"
+ }
+ },
+ "system": "drone system 4373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43392196605383,
+ 39.38712042738086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4374",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4374 accessories"
+ }
+ },
+ "system": "drone system 4374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32304308287931,
+ 38.91306926768257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4375",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4375 accessories"
+ }
+ },
+ "system": "drone system 4375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27575526220184,
+ 39.11521538485053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4376",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4376 accessories"
+ }
+ },
+ "system": "drone system 4376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36560226735898,
+ 38.52407892933832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4377",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4377 accessories"
+ }
+ },
+ "system": "drone system 4377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63316689346783,
+ 39.00927986754391
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4378",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4378 accessories"
+ }
+ },
+ "system": "drone system 4378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29270856598077,
+ 39.35599338230053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4379",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4379 accessories"
+ }
+ },
+ "system": "drone system 4379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60610702562674,
+ 38.48119987185915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4380",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4380 accessories"
+ }
+ },
+ "system": "drone system 4380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53254092075983,
+ 38.716142277345035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4381",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4381 accessories"
+ }
+ },
+ "system": "drone system 4381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82435045152742,
+ 39.072766148733855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4382",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4382 accessories"
+ }
+ },
+ "system": "drone system 4382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97196231606254,
+ 39.47230016610154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4383",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4383 accessories"
+ }
+ },
+ "system": "drone system 4383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16713567668194,
+ 39.24371214243113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4384",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4384 accessories"
+ }
+ },
+ "system": "drone system 4384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47471036815674,
+ 39.011526089209035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4385",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4385 accessories"
+ }
+ },
+ "system": "drone system 4385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24163920450117,
+ 38.94970407957375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4386",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4386 accessories"
+ }
+ },
+ "system": "drone system 4386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21251181443347,
+ 39.63346873018163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4387",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4387 accessories"
+ }
+ },
+ "system": "drone system 4387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07323750823669,
+ 38.32335050380667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4388",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4388 accessories"
+ }
+ },
+ "system": "drone system 4388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55428083675955,
+ 39.0950516983247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4389",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4389 accessories"
+ }
+ },
+ "system": "drone system 4389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7041529058106,
+ 38.27868552541811
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4390",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4390 accessories"
+ }
+ },
+ "system": "drone system 4390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16064300547514,
+ 39.57412125311562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4391",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4391 accessories"
+ }
+ },
+ "system": "drone system 4391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41891103205393,
+ 39.08698200181204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4392",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4392 accessories"
+ }
+ },
+ "system": "drone system 4392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61589924606945,
+ 39.08811195272328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4393",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4393 accessories"
+ }
+ },
+ "system": "drone system 4393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30298061377255,
+ 38.963528538739034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4394",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4394 accessories"
+ }
+ },
+ "system": "drone system 4394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4572913900592,
+ 38.90944685574089
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4395",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4395 accessories"
+ }
+ },
+ "system": "drone system 4395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81820211844541,
+ 38.8037663499554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4396",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4396 accessories"
+ }
+ },
+ "system": "drone system 4396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07515501110409,
+ 38.39597958640055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4397",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4397 accessories"
+ }
+ },
+ "system": "drone system 4397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53524663457355,
+ 39.54256192573818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4398",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4398 accessories"
+ }
+ },
+ "system": "drone system 4398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9043891443995,
+ 38.8553717134678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4399",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4399 accessories"
+ }
+ },
+ "system": "drone system 4399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51239149890351,
+ 39.2149409965902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4400",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4400 accessories"
+ }
+ },
+ "system": "drone system 4400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44579477732665,
+ 38.83216185673523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4401",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4401 accessories"
+ }
+ },
+ "system": "drone system 4401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10288126668907,
+ 39.705962566887614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4402",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4402 accessories"
+ }
+ },
+ "system": "drone system 4402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58966530065517,
+ 38.47924189692575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4403",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4403 accessories"
+ }
+ },
+ "system": "drone system 4403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84700592424203,
+ 39.08737022698166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4404",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4404 accessories"
+ }
+ },
+ "system": "drone system 4404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.259034329718,
+ 38.06020141174768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4405",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4405 accessories"
+ }
+ },
+ "system": "drone system 4405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19796238213553,
+ 39.62226092331453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4406",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4406 accessories"
+ }
+ },
+ "system": "drone system 4406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38019383559475,
+ 38.61131120481923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4407",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4407 accessories"
+ }
+ },
+ "system": "drone system 4407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78349812146047,
+ 39.00338328245793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4408",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4408 accessories"
+ }
+ },
+ "system": "drone system 4408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63585890307913,
+ 39.493368551426904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4409",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4409 accessories"
+ }
+ },
+ "system": "drone system 4409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25707375540486,
+ 38.82541723295273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4410",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4410 accessories"
+ }
+ },
+ "system": "drone system 4410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87361710929349,
+ 38.88737515321435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4411",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4411 accessories"
+ }
+ },
+ "system": "drone system 4411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80831890786976,
+ 39.34808463359503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4412",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4412 accessories"
+ }
+ },
+ "system": "drone system 4412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74987859903827,
+ 38.81635804267549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4413",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4413 accessories"
+ }
+ },
+ "system": "drone system 4413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91924146481192,
+ 38.98451456283749
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4414",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4414 accessories"
+ }
+ },
+ "system": "drone system 4414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34255467035193,
+ 38.89570142462251
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4415",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4415 accessories"
+ }
+ },
+ "system": "drone system 4415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2698226460963,
+ 39.058930637031935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4416",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4416 accessories"
+ }
+ },
+ "system": "drone system 4416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26886045532694,
+ 39.27098629935853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4417",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4417 accessories"
+ }
+ },
+ "system": "drone system 4417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83317760905307,
+ 39.77436614026545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4418",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4418 accessories"
+ }
+ },
+ "system": "drone system 4418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55218575077181,
+ 38.861382718051004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4419",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4419 accessories"
+ }
+ },
+ "system": "drone system 4419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28920322072506,
+ 38.92638733057726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4420",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4420 accessories"
+ }
+ },
+ "system": "drone system 4420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27538499049398,
+ 39.43709187514048
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4421",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4421 accessories"
+ }
+ },
+ "system": "drone system 4421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5704169588695,
+ 39.321908546087656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4422",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4422 accessories"
+ }
+ },
+ "system": "drone system 4422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77228557354766,
+ 38.42990689189507
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4423",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4423 accessories"
+ }
+ },
+ "system": "drone system 4423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04182464436396,
+ 39.79482054952742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4424",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4424 accessories"
+ }
+ },
+ "system": "drone system 4424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75413179943034,
+ 38.35664928028804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4425",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4425 accessories"
+ }
+ },
+ "system": "drone system 4425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53658312289828,
+ 39.54827464668724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4426",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4426 accessories"
+ }
+ },
+ "system": "drone system 4426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65113958478733,
+ 38.92892354031371
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4427",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4427 accessories"
+ }
+ },
+ "system": "drone system 4427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43930127921799,
+ 39.30474920659618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4428",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4428 accessories"
+ }
+ },
+ "system": "drone system 4428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41948776517968,
+ 39.05627222612839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4429",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4429 accessories"
+ }
+ },
+ "system": "drone system 4429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55336313002586,
+ 39.20122592952771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4430",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4430 accessories"
+ }
+ },
+ "system": "drone system 4430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77958777325932,
+ 38.2273387168724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4431",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4431 accessories"
+ }
+ },
+ "system": "drone system 4431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84692810996359,
+ 39.11156088121763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4432",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4432 accessories"
+ }
+ },
+ "system": "drone system 4432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18147095313645,
+ 39.09471283312343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4433",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4433 accessories"
+ }
+ },
+ "system": "drone system 4433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9435002842788,
+ 38.95871681425599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4434",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4434 accessories"
+ }
+ },
+ "system": "drone system 4434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85177015620364,
+ 39.11186104369263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4435",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4435 accessories"
+ }
+ },
+ "system": "drone system 4435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94533157383908,
+ 38.87285150273624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4436",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4436 accessories"
+ }
+ },
+ "system": "drone system 4436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71494578628825,
+ 38.67383105241616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4437",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4437 accessories"
+ }
+ },
+ "system": "drone system 4437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27124299615302,
+ 39.65265853695506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4438",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4438 accessories"
+ }
+ },
+ "system": "drone system 4438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13071785932723,
+ 38.38739706086299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4439",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4439 accessories"
+ }
+ },
+ "system": "drone system 4439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51319700492206,
+ 39.655401380653316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4440",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4440 accessories"
+ }
+ },
+ "system": "drone system 4440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5438245379524,
+ 38.970626383816764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4441",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4441 accessories"
+ }
+ },
+ "system": "drone system 4441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79015550641874,
+ 39.35010439568739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4442",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4442 accessories"
+ }
+ },
+ "system": "drone system 4442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59006958950859,
+ 39.10802858912047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4443",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4443 accessories"
+ }
+ },
+ "system": "drone system 4443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13937612802236,
+ 38.856365409553646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4444",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4444 accessories"
+ }
+ },
+ "system": "drone system 4444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44187025745437,
+ 38.675490973632975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4445",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4445 accessories"
+ }
+ },
+ "system": "drone system 4445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15162414542158,
+ 38.2638910039786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4446",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4446 accessories"
+ }
+ },
+ "system": "drone system 4446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88883728543487,
+ 38.54452689233122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4447",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4447 accessories"
+ }
+ },
+ "system": "drone system 4447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56739694011645,
+ 39.295817557051876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4448",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4448 accessories"
+ }
+ },
+ "system": "drone system 4448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2362221164029,
+ 38.38730141695225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4449",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4449 accessories"
+ }
+ },
+ "system": "drone system 4449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42357798905174,
+ 38.56750080784373
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4450",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4450 accessories"
+ }
+ },
+ "system": "drone system 4450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50087732709065,
+ 38.828723425827796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4451",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4451 accessories"
+ }
+ },
+ "system": "drone system 4451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13748635709031,
+ 38.91146671031099
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4452",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4452 accessories"
+ }
+ },
+ "system": "drone system 4452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60343543041618,
+ 38.28218813722316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4453",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4453 accessories"
+ }
+ },
+ "system": "drone system 4453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83368481272394,
+ 39.24756258193451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4454",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4454 accessories"
+ }
+ },
+ "system": "drone system 4454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37793799266967,
+ 39.58895516122959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4455",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4455 accessories"
+ }
+ },
+ "system": "drone system 4455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43182198937974,
+ 38.715094562550945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4456",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4456 accessories"
+ }
+ },
+ "system": "drone system 4456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50100766255842,
+ 38.896941368730424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4457",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4457 accessories"
+ }
+ },
+ "system": "drone system 4457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49385125403356,
+ 38.37854803069273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4458",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4458 accessories"
+ }
+ },
+ "system": "drone system 4458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33856374191689,
+ 38.82406081793319
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4459",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4459 accessories"
+ }
+ },
+ "system": "drone system 4459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53051333346073,
+ 38.953830693784546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4460",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4460 accessories"
+ }
+ },
+ "system": "drone system 4460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53106305343421,
+ 38.31398489659495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4461",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4461 accessories"
+ }
+ },
+ "system": "drone system 4461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34608908404617,
+ 38.5726197056201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4462",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4462 accessories"
+ }
+ },
+ "system": "drone system 4462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70887481407584,
+ 38.475699839367905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4463",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4463 accessories"
+ }
+ },
+ "system": "drone system 4463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40315445778104,
+ 38.5290524629941
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4464",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4464 accessories"
+ }
+ },
+ "system": "drone system 4464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62880831796507,
+ 39.41024490335786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4465",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4465 accessories"
+ }
+ },
+ "system": "drone system 4465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44601903335054,
+ 39.500379893830754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4466",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4466 accessories"
+ }
+ },
+ "system": "drone system 4466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96231698252896,
+ 39.20269563558447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4467",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4467 accessories"
+ }
+ },
+ "system": "drone system 4467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47328886812365,
+ 38.966119207520705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4468",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4468 accessories"
+ }
+ },
+ "system": "drone system 4468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37329281311378,
+ 39.59006659382061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4469",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4469 accessories"
+ }
+ },
+ "system": "drone system 4469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45174355132859,
+ 39.30065030662219
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4470",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4470 accessories"
+ }
+ },
+ "system": "drone system 4470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46382671930228,
+ 39.27031565754906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4471",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4471 accessories"
+ }
+ },
+ "system": "drone system 4471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49384695316272,
+ 39.399206672895424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4472",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4472 accessories"
+ }
+ },
+ "system": "drone system 4472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34822735229295,
+ 38.279310604271544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4473",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4473 accessories"
+ }
+ },
+ "system": "drone system 4473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4684511042789,
+ 39.56087308471783
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4474",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4474 accessories"
+ }
+ },
+ "system": "drone system 4474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38158271816138,
+ 39.58266556679222
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4475",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4475 accessories"
+ }
+ },
+ "system": "drone system 4475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51946704691967,
+ 39.544255440983626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4476",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4476 accessories"
+ }
+ },
+ "system": "drone system 4476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73353332500061,
+ 38.699604433039454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4477",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4477 accessories"
+ }
+ },
+ "system": "drone system 4477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11217931319379,
+ 38.976810754565726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4478",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4478 accessories"
+ }
+ },
+ "system": "drone system 4478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6780791316517,
+ 39.29272952141674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4479",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4479 accessories"
+ }
+ },
+ "system": "drone system 4479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68696514008971,
+ 38.10608873397347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4480",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4480 accessories"
+ }
+ },
+ "system": "drone system 4480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3145277681029,
+ 38.842918914630616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4481",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4481 accessories"
+ }
+ },
+ "system": "drone system 4481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24703644898983,
+ 38.65181124218973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4482",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4482 accessories"
+ }
+ },
+ "system": "drone system 4482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86620323937557,
+ 39.26395606749411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4483",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4483 accessories"
+ }
+ },
+ "system": "drone system 4483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11950777442875,
+ 39.708522464347844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4484",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4484 accessories"
+ }
+ },
+ "system": "drone system 4484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77426089975634,
+ 39.30640396034222
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4485",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4485 accessories"
+ }
+ },
+ "system": "drone system 4485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50717079491783,
+ 38.40650651644452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4486",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4486 accessories"
+ }
+ },
+ "system": "drone system 4486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14143747655936,
+ 39.57803940212093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4487",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4487 accessories"
+ }
+ },
+ "system": "drone system 4487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35025066270222,
+ 38.2750670586509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4488",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4488 accessories"
+ }
+ },
+ "system": "drone system 4488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94762572150638,
+ 38.41338248472719
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4489",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4489 accessories"
+ }
+ },
+ "system": "drone system 4489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32567414693507,
+ 38.58861478328103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4490",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4490 accessories"
+ }
+ },
+ "system": "drone system 4490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21702320905737,
+ 38.50822879533668
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4491",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4491 accessories"
+ }
+ },
+ "system": "drone system 4491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39042224050773,
+ 39.45673196658362
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4492",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4492 accessories"
+ }
+ },
+ "system": "drone system 4492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48814377268549,
+ 39.40022237732773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4493",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4493 accessories"
+ }
+ },
+ "system": "drone system 4493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31739911719588,
+ 39.18751673851629
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4494",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4494 accessories"
+ }
+ },
+ "system": "drone system 4494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13981066389483,
+ 38.94331976262942
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4495",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4495 accessories"
+ }
+ },
+ "system": "drone system 4495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26517202011966,
+ 39.283442693540586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4496",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4496 accessories"
+ }
+ },
+ "system": "drone system 4496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96909445201116,
+ 38.15809708901309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4497",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4497 accessories"
+ }
+ },
+ "system": "drone system 4497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59374862283133,
+ 38.41052060233375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4498",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4498 accessories"
+ }
+ },
+ "system": "drone system 4498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7912274430679,
+ 38.53030319867071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4499",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4499 accessories"
+ }
+ },
+ "system": "drone system 4499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40148337328306,
+ 38.633687989887896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4500",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4500 accessories"
+ }
+ },
+ "system": "drone system 4500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56227814924614,
+ 38.20669174753811
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4501",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4501 accessories"
+ }
+ },
+ "system": "drone system 4501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48646962573439,
+ 38.42481640028281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4502",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4502 accessories"
+ }
+ },
+ "system": "drone system 4502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87777669416349,
+ 38.69222405701062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4503",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4503 accessories"
+ }
+ },
+ "system": "drone system 4503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13846484758537,
+ 38.45687148292289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4504",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4504 accessories"
+ }
+ },
+ "system": "drone system 4504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17155211429572,
+ 38.02102922082252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4505",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4505 accessories"
+ }
+ },
+ "system": "drone system 4505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66048685011943,
+ 38.525217548388625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4506",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4506 accessories"
+ }
+ },
+ "system": "drone system 4506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20343160296126,
+ 39.051292836889495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4507",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4507 accessories"
+ }
+ },
+ "system": "drone system 4507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06900249859359,
+ 38.08152578285171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4508",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4508 accessories"
+ }
+ },
+ "system": "drone system 4508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62083920906795,
+ 38.372801906658175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4509",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4509 accessories"
+ }
+ },
+ "system": "drone system 4509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33439752657566,
+ 38.81754398742778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4510",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4510 accessories"
+ }
+ },
+ "system": "drone system 4510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74878990757178,
+ 39.56156310279793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4511",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4511 accessories"
+ }
+ },
+ "system": "drone system 4511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28332709283806,
+ 38.46732097880496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4512",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4512 accessories"
+ }
+ },
+ "system": "drone system 4512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79318060170317,
+ 39.58954141228356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4513",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4513 accessories"
+ }
+ },
+ "system": "drone system 4513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29707206774322,
+ 39.4813664918583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4514",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4514 accessories"
+ }
+ },
+ "system": "drone system 4514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97772615975023,
+ 39.16840142838103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4515",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4515 accessories"
+ }
+ },
+ "system": "drone system 4515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68007921835046,
+ 38.49246609510896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4516",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4516 accessories"
+ }
+ },
+ "system": "drone system 4516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19213654951619,
+ 39.21442073383929
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4517",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4517 accessories"
+ }
+ },
+ "system": "drone system 4517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58857037924395,
+ 39.57656330581929
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4518",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4518 accessories"
+ }
+ },
+ "system": "drone system 4518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14409955091678,
+ 38.342326657907385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4519",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4519 accessories"
+ }
+ },
+ "system": "drone system 4519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61581779567942,
+ 38.84301604290125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4520",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4520 accessories"
+ }
+ },
+ "system": "drone system 4520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59370342033719,
+ 38.977519386464806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4521",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4521 accessories"
+ }
+ },
+ "system": "drone system 4521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2446430631774,
+ 39.308909384476344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4522",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4522 accessories"
+ }
+ },
+ "system": "drone system 4522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64439952689794,
+ 39.384364282117325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4523",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4523 accessories"
+ }
+ },
+ "system": "drone system 4523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19349300546287,
+ 39.61781859119725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4524",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4524 accessories"
+ }
+ },
+ "system": "drone system 4524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38057205917048,
+ 38.095879784475656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4525",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4525 accessories"
+ }
+ },
+ "system": "drone system 4525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43766546662083,
+ 39.25468118916018
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4526",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4526 accessories"
+ }
+ },
+ "system": "drone system 4526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05539298052723,
+ 39.35343131399569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4527",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4527 accessories"
+ }
+ },
+ "system": "drone system 4527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11755437951426,
+ 39.31423381585987
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4528",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4528 accessories"
+ }
+ },
+ "system": "drone system 4528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4755702011833,
+ 38.59422895912005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4529",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4529 accessories"
+ }
+ },
+ "system": "drone system 4529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4856301138316,
+ 39.38948081671234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4530",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4530 accessories"
+ }
+ },
+ "system": "drone system 4530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48485233436931,
+ 39.43266789987926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4531",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4531 accessories"
+ }
+ },
+ "system": "drone system 4531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39473703486095,
+ 38.96553515468804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4532",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4532 accessories"
+ }
+ },
+ "system": "drone system 4532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75803400891688,
+ 38.9765358626922
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4533",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4533 accessories"
+ }
+ },
+ "system": "drone system 4533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7447873354648,
+ 38.212538680268715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4534",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4534 accessories"
+ }
+ },
+ "system": "drone system 4534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04847159918056,
+ 38.60354881410945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4535",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4535 accessories"
+ }
+ },
+ "system": "drone system 4535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72402278473028,
+ 39.61898476917837
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4536",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4536 accessories"
+ }
+ },
+ "system": "drone system 4536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24632988207597,
+ 39.29244088590768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4537",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4537 accessories"
+ }
+ },
+ "system": "drone system 4537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1614044252239,
+ 38.35966315894206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4538",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4538 accessories"
+ }
+ },
+ "system": "drone system 4538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94529604032937,
+ 38.92793278917585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4539",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4539 accessories"
+ }
+ },
+ "system": "drone system 4539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79058192348478,
+ 39.3192113784104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4540",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4540 accessories"
+ }
+ },
+ "system": "drone system 4540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35125846140512,
+ 38.08568981435375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4541",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4541 accessories"
+ }
+ },
+ "system": "drone system 4541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77647116338703,
+ 39.18936300367037
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4542",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4542 accessories"
+ }
+ },
+ "system": "drone system 4542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34193396839035,
+ 39.03952098151081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4543",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4543 accessories"
+ }
+ },
+ "system": "drone system 4543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57497867572465,
+ 39.03483744006588
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4544",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4544 accessories"
+ }
+ },
+ "system": "drone system 4544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63241007192,
+ 39.457654589835485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4545",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4545 accessories"
+ }
+ },
+ "system": "drone system 4545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79415245501515,
+ 39.703060389324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4546",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4546 accessories"
+ }
+ },
+ "system": "drone system 4546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7951995170332,
+ 39.06637406402484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4547",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4547 accessories"
+ }
+ },
+ "system": "drone system 4547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32559499241673,
+ 39.0559687218487
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4548",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4548 accessories"
+ }
+ },
+ "system": "drone system 4548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42376374006498,
+ 38.29456028064751
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4549",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4549 accessories"
+ }
+ },
+ "system": "drone system 4549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66443842462684,
+ 39.473985849838485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4550",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4550 accessories"
+ }
+ },
+ "system": "drone system 4550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49681809278171,
+ 38.74652579655348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4551",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4551 accessories"
+ }
+ },
+ "system": "drone system 4551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52363595385857,
+ 38.67693690050342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4552",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4552 accessories"
+ }
+ },
+ "system": "drone system 4552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13231676058523,
+ 39.625800626678924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4553",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4553 accessories"
+ }
+ },
+ "system": "drone system 4553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26000636424133,
+ 39.03837072590201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4554",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4554 accessories"
+ }
+ },
+ "system": "drone system 4554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64364789955395,
+ 38.290512733967745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4555",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4555 accessories"
+ }
+ },
+ "system": "drone system 4555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99409643358268,
+ 39.09480388545138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4556",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4556 accessories"
+ }
+ },
+ "system": "drone system 4556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49547426452429,
+ 38.508324444413475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4557",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4557 accessories"
+ }
+ },
+ "system": "drone system 4557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84957649029003,
+ 39.598493968444046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4558",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4558 accessories"
+ }
+ },
+ "system": "drone system 4558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59068184877455,
+ 39.59059632594392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4559",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4559 accessories"
+ }
+ },
+ "system": "drone system 4559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95394040144191,
+ 39.5876788919556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4560",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4560 accessories"
+ }
+ },
+ "system": "drone system 4560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75889935411142,
+ 39.68787200370525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4561",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4561 accessories"
+ }
+ },
+ "system": "drone system 4561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54101685155933,
+ 38.96612509875797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4562",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4562 accessories"
+ }
+ },
+ "system": "drone system 4562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7201014421491,
+ 38.74266569365279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4563",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4563 accessories"
+ }
+ },
+ "system": "drone system 4563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37978035479982,
+ 38.12437694381949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4564",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4564 accessories"
+ }
+ },
+ "system": "drone system 4564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14879811987369,
+ 38.85821081946653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4565",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4565 accessories"
+ }
+ },
+ "system": "drone system 4565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25773681214707,
+ 38.85036705121146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4566",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4566 accessories"
+ }
+ },
+ "system": "drone system 4566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90413423955913,
+ 39.10305771175918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4567",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4567 accessories"
+ }
+ },
+ "system": "drone system 4567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7286001960617,
+ 39.60779587173018
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4568",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4568 accessories"
+ }
+ },
+ "system": "drone system 4568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17431555056551,
+ 38.77044643336972
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4569",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4569 accessories"
+ }
+ },
+ "system": "drone system 4569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03847066356292,
+ 38.064430327815124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4570",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4570 accessories"
+ }
+ },
+ "system": "drone system 4570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68086414095967,
+ 38.76457855068606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4571",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4571 accessories"
+ }
+ },
+ "system": "drone system 4571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54027767871604,
+ 38.6676113539118
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4572",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4572 accessories"
+ }
+ },
+ "system": "drone system 4572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78345591450856,
+ 38.890027149779144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4573",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4573 accessories"
+ }
+ },
+ "system": "drone system 4573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74491506370015,
+ 38.83476460442395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4574",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4574 accessories"
+ }
+ },
+ "system": "drone system 4574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53594816110416,
+ 38.44869172324715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4575",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4575 accessories"
+ }
+ },
+ "system": "drone system 4575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68342295649823,
+ 39.332678744278226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4576",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4576 accessories"
+ }
+ },
+ "system": "drone system 4576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55056607139561,
+ 38.85833225643377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4577",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4577 accessories"
+ }
+ },
+ "system": "drone system 4577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70444654775052,
+ 38.3835976332169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4578",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4578 accessories"
+ }
+ },
+ "system": "drone system 4578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54329856897938,
+ 39.00796039380007
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4579",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4579 accessories"
+ }
+ },
+ "system": "drone system 4579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39647498657278,
+ 38.20016782165258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4580",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4580 accessories"
+ }
+ },
+ "system": "drone system 4580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74088880747625,
+ 39.30369122321439
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4581",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4581 accessories"
+ }
+ },
+ "system": "drone system 4581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79450247248897,
+ 38.56901384036472
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4582",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4582 accessories"
+ }
+ },
+ "system": "drone system 4582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54158526662349,
+ 38.240554198684706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4583",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4583 accessories"
+ }
+ },
+ "system": "drone system 4583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43867312799951,
+ 38.920475618587055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4584",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4584 accessories"
+ }
+ },
+ "system": "drone system 4584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56627101559266,
+ 38.906840192691426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4585",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4585 accessories"
+ }
+ },
+ "system": "drone system 4585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16903584183295,
+ 39.06256881290235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4586",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4586 accessories"
+ }
+ },
+ "system": "drone system 4586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42998323255898,
+ 38.287523107314655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4587",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4587 accessories"
+ }
+ },
+ "system": "drone system 4587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0677443446141,
+ 39.347515834856985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4588",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4588 accessories"
+ }
+ },
+ "system": "drone system 4588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82297145733473,
+ 39.31209072977125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4589",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4589 accessories"
+ }
+ },
+ "system": "drone system 4589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79603322883561,
+ 39.62465525455743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4590",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4590 accessories"
+ }
+ },
+ "system": "drone system 4590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5083123278179,
+ 38.234615904549635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4591",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4591 accessories"
+ }
+ },
+ "system": "drone system 4591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91344702110496,
+ 38.48028263047855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4592",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4592 accessories"
+ }
+ },
+ "system": "drone system 4592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60156028555858,
+ 38.679119570910075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4593",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4593 accessories"
+ }
+ },
+ "system": "drone system 4593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8269239709497,
+ 38.91681928204248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4594",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4594 accessories"
+ }
+ },
+ "system": "drone system 4594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49150483254708,
+ 39.6245375368548
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4595",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4595 accessories"
+ }
+ },
+ "system": "drone system 4595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93266953868394,
+ 38.145742571619024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4596",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4596 accessories"
+ }
+ },
+ "system": "drone system 4596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42085052077036,
+ 39.48653983314544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4597",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4597 accessories"
+ }
+ },
+ "system": "drone system 4597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15752003173341,
+ 38.049959567146985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4598",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4598 accessories"
+ }
+ },
+ "system": "drone system 4598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57459432008089,
+ 38.62639957927675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4599",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4599 accessories"
+ }
+ },
+ "system": "drone system 4599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69848317537134,
+ 38.119887634119046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4600",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4600 accessories"
+ }
+ },
+ "system": "drone system 4600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49466631660329,
+ 38.76718391708761
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4601",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4601 accessories"
+ }
+ },
+ "system": "drone system 4601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56712281695266,
+ 38.4886567405619
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4602",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4602 accessories"
+ }
+ },
+ "system": "drone system 4602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69834868191653,
+ 38.12801214505682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4603",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4603 accessories"
+ }
+ },
+ "system": "drone system 4603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49238856556171,
+ 39.38326661426771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4604",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4604 accessories"
+ }
+ },
+ "system": "drone system 4604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73716698579162,
+ 38.78560382234743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4605",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4605 accessories"
+ }
+ },
+ "system": "drone system 4605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76627470760435,
+ 38.55539766039392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4606",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4606 accessories"
+ }
+ },
+ "system": "drone system 4606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0884989768712,
+ 38.325719505249566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4607",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4607 accessories"
+ }
+ },
+ "system": "drone system 4607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61448190590504,
+ 38.12132776343182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4608",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4608 accessories"
+ }
+ },
+ "system": "drone system 4608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36742338506276,
+ 38.59239162055156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4609",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4609 accessories"
+ }
+ },
+ "system": "drone system 4609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06573240441965,
+ 38.94065055207746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4610",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4610 accessories"
+ }
+ },
+ "system": "drone system 4610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45845493206718,
+ 39.628657784711834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4611",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4611 accessories"
+ }
+ },
+ "system": "drone system 4611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55883933794046,
+ 38.290273840813185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4612",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4612 accessories"
+ }
+ },
+ "system": "drone system 4612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4430159839878,
+ 38.75213753446769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4613",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4613 accessories"
+ }
+ },
+ "system": "drone system 4613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54951168248223,
+ 38.42496032296611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4614",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4614 accessories"
+ }
+ },
+ "system": "drone system 4614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98778045764021,
+ 39.23402624514549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4615",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4615 accessories"
+ }
+ },
+ "system": "drone system 4615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6124223459357,
+ 38.944244782766745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4616",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4616 accessories"
+ }
+ },
+ "system": "drone system 4616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87591419134041,
+ 38.169054910012896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4617",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4617 accessories"
+ }
+ },
+ "system": "drone system 4617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56000353363768,
+ 38.30979225564989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4618",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4618 accessories"
+ }
+ },
+ "system": "drone system 4618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91541341390483,
+ 38.295042539058464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4619",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4619 accessories"
+ }
+ },
+ "system": "drone system 4619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69472003759698,
+ 39.409042784359464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4620",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4620 accessories"
+ }
+ },
+ "system": "drone system 4620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52288191068294,
+ 38.89343328419353
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4621",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4621 accessories"
+ }
+ },
+ "system": "drone system 4621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17356621253994,
+ 38.13351360116031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4622",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4622 accessories"
+ }
+ },
+ "system": "drone system 4622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55569080781612,
+ 39.37993312826856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4623",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4623 accessories"
+ }
+ },
+ "system": "drone system 4623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66293086555508,
+ 39.35620856933471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4624",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4624 accessories"
+ }
+ },
+ "system": "drone system 4624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54795662066691,
+ 39.11355488372189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4625",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4625 accessories"
+ }
+ },
+ "system": "drone system 4625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31741807229506,
+ 39.16375963138353
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4626",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4626 accessories"
+ }
+ },
+ "system": "drone system 4626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70293630432789,
+ 39.224715945368125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4627",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4627 accessories"
+ }
+ },
+ "system": "drone system 4627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74376491304254,
+ 38.74395632636697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4628",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4628 accessories"
+ }
+ },
+ "system": "drone system 4628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32002496978589,
+ 38.77190017055862
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4629",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4629 accessories"
+ }
+ },
+ "system": "drone system 4629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06385988072162,
+ 38.16112009841329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4630",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4630 accessories"
+ }
+ },
+ "system": "drone system 4630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15764545572566,
+ 38.60520250136261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4631",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4631 accessories"
+ }
+ },
+ "system": "drone system 4631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68365710382021,
+ 38.92234394978142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4632",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4632 accessories"
+ }
+ },
+ "system": "drone system 4632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49591466485843,
+ 39.24652252613001
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4633",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4633 accessories"
+ }
+ },
+ "system": "drone system 4633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12891647801705,
+ 39.586940516921864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4634",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4634 accessories"
+ }
+ },
+ "system": "drone system 4634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17745351763257,
+ 38.1614617840808
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4635",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4635 accessories"
+ }
+ },
+ "system": "drone system 4635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88835392168824,
+ 39.0854490839904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4636",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4636 accessories"
+ }
+ },
+ "system": "drone system 4636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76353379740188,
+ 39.19197603092624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4637",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4637 accessories"
+ }
+ },
+ "system": "drone system 4637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0091840063318,
+ 38.243019372466144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4638",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4638 accessories"
+ }
+ },
+ "system": "drone system 4638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60049596698151,
+ 39.53615182904379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4639",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4639 accessories"
+ }
+ },
+ "system": "drone system 4639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56763240514304,
+ 38.37357382571674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4640",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4640 accessories"
+ }
+ },
+ "system": "drone system 4640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39250204079002,
+ 39.474239686315485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4641",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4641 accessories"
+ }
+ },
+ "system": "drone system 4641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36542918838987,
+ 39.55381324944527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4642",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4642 accessories"
+ }
+ },
+ "system": "drone system 4642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33978492032715,
+ 38.69156629532259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4643",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4643 accessories"
+ }
+ },
+ "system": "drone system 4643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95535310918224,
+ 38.78495065229956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4644",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4644 accessories"
+ }
+ },
+ "system": "drone system 4644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3609474223801,
+ 39.244623994345204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4645",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4645 accessories"
+ }
+ },
+ "system": "drone system 4645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31393706705036,
+ 38.92881190478669
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4646",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4646 accessories"
+ }
+ },
+ "system": "drone system 4646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70111769643077,
+ 38.294355691655774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4647",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4647 accessories"
+ }
+ },
+ "system": "drone system 4647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9357077178563,
+ 39.307255740091634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4648",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4648 accessories"
+ }
+ },
+ "system": "drone system 4648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33355440211312,
+ 38.96913206666709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4649",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4649 accessories"
+ }
+ },
+ "system": "drone system 4649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1814206354229,
+ 39.62081101845855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4650",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4650 accessories"
+ }
+ },
+ "system": "drone system 4650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78273496489464,
+ 39.1781155956421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4651",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4651 accessories"
+ }
+ },
+ "system": "drone system 4651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62140822438982,
+ 39.49345775066429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4652",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4652 accessories"
+ }
+ },
+ "system": "drone system 4652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1147840912262,
+ 38.20128399552583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4653",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4653 accessories"
+ }
+ },
+ "system": "drone system 4653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51981060722909,
+ 39.12669868629175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4654",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4654 accessories"
+ }
+ },
+ "system": "drone system 4654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80230117160139,
+ 39.23287267486096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4655",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4655 accessories"
+ }
+ },
+ "system": "drone system 4655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94010763997196,
+ 39.09626269872973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4656",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4656 accessories"
+ }
+ },
+ "system": "drone system 4656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97678387749814,
+ 38.52918991512523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4657",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4657 accessories"
+ }
+ },
+ "system": "drone system 4657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76558510108485,
+ 38.433815776579124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4658",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4658 accessories"
+ }
+ },
+ "system": "drone system 4658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15529365174223,
+ 38.67997051630889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4659",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4659 accessories"
+ }
+ },
+ "system": "drone system 4659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59108753987569,
+ 39.070303232567156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4660",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4660 accessories"
+ }
+ },
+ "system": "drone system 4660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72430523510594,
+ 38.57718744441669
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4661",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4661 accessories"
+ }
+ },
+ "system": "drone system 4661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92797237942789,
+ 39.29639031829653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4662",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4662 accessories"
+ }
+ },
+ "system": "drone system 4662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99261821735305,
+ 38.85711597463444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4663",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4663 accessories"
+ }
+ },
+ "system": "drone system 4663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6129737352885,
+ 39.41449275700852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4664",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4664 accessories"
+ }
+ },
+ "system": "drone system 4664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34727704691227,
+ 39.15945404082985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4665",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4665 accessories"
+ }
+ },
+ "system": "drone system 4665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94885673410292,
+ 38.66493741724426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4666",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4666 accessories"
+ }
+ },
+ "system": "drone system 4666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77941441952325,
+ 39.261070871383794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4667",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4667 accessories"
+ }
+ },
+ "system": "drone system 4667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34719462832467,
+ 38.88381665548262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4668",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4668 accessories"
+ }
+ },
+ "system": "drone system 4668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37097137554107,
+ 39.717781054799126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4669",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4669 accessories"
+ }
+ },
+ "system": "drone system 4669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23418117628081,
+ 38.29223169873879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4670",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4670 accessories"
+ }
+ },
+ "system": "drone system 4670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.828620521438,
+ 38.56839270424073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4671",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4671 accessories"
+ }
+ },
+ "system": "drone system 4671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9278917583501,
+ 39.6033960991964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4672",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4672 accessories"
+ }
+ },
+ "system": "drone system 4672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77222588114864,
+ 38.356664955742325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4673",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4673 accessories"
+ }
+ },
+ "system": "drone system 4673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87923835232446,
+ 39.14748349131099
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4674",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4674 accessories"
+ }
+ },
+ "system": "drone system 4674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74392101275393,
+ 39.2931857009893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4675",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4675 accessories"
+ }
+ },
+ "system": "drone system 4675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7558707444137,
+ 38.99725980390088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4676",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4676 accessories"
+ }
+ },
+ "system": "drone system 4676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66813435536568,
+ 38.46900757754682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4677",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4677 accessories"
+ }
+ },
+ "system": "drone system 4677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01533847819849,
+ 38.866901602586076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4678",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4678 accessories"
+ }
+ },
+ "system": "drone system 4678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86774926684278,
+ 39.48483052037508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4679",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4679 accessories"
+ }
+ },
+ "system": "drone system 4679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44487552794838,
+ 39.0851342186466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4680",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4680 accessories"
+ }
+ },
+ "system": "drone system 4680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40259884444079,
+ 39.04077342513685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4681",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4681 accessories"
+ }
+ },
+ "system": "drone system 4681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8047170969425,
+ 39.142616472975774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4682",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4682 accessories"
+ }
+ },
+ "system": "drone system 4682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94755597048909,
+ 38.461399456902065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4683",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4683 accessories"
+ }
+ },
+ "system": "drone system 4683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58693546973144,
+ 39.61323669183895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4684",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4684 accessories"
+ }
+ },
+ "system": "drone system 4684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23725769871164,
+ 38.26457454979863
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4685",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4685 accessories"
+ }
+ },
+ "system": "drone system 4685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68196970983979,
+ 38.409495867891536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4686",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4686 accessories"
+ }
+ },
+ "system": "drone system 4686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10643919214317,
+ 38.70118338893584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4687",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4687 accessories"
+ }
+ },
+ "system": "drone system 4687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90123964676593,
+ 38.78168910657452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4688",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4688 accessories"
+ }
+ },
+ "system": "drone system 4688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04832446109211,
+ 39.471005376344664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4689",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4689 accessories"
+ }
+ },
+ "system": "drone system 4689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73066341634203,
+ 38.893189171550375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4690",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4690 accessories"
+ }
+ },
+ "system": "drone system 4690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58769871079676,
+ 38.48177487627388
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4691",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4691 accessories"
+ }
+ },
+ "system": "drone system 4691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51747447043199,
+ 39.13870212854667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4692",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4692 accessories"
+ }
+ },
+ "system": "drone system 4692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7720551856905,
+ 38.53703917353386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4693",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4693 accessories"
+ }
+ },
+ "system": "drone system 4693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80661823136214,
+ 39.27312364492926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4694",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4694 accessories"
+ }
+ },
+ "system": "drone system 4694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33387631095914,
+ 39.18668752585991
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4695",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4695 accessories"
+ }
+ },
+ "system": "drone system 4695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70978871265339,
+ 39.49961943132823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4696",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4696 accessories"
+ }
+ },
+ "system": "drone system 4696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34402689779375,
+ 38.81261280261616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4697",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4697 accessories"
+ }
+ },
+ "system": "drone system 4697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87380574326744,
+ 38.40465221467278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4698",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4698 accessories"
+ }
+ },
+ "system": "drone system 4698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18925241570882,
+ 39.67274302879707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4699",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4699 accessories"
+ }
+ },
+ "system": "drone system 4699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3440425857052,
+ 38.56111208286381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4700",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4700 accessories"
+ }
+ },
+ "system": "drone system 4700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03674192493361,
+ 38.83957032943005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4701",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4701 accessories"
+ }
+ },
+ "system": "drone system 4701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7525477855031,
+ 38.59470372674477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4702",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4702 accessories"
+ }
+ },
+ "system": "drone system 4702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5287834564722,
+ 38.23644299647761
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4703",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4703 accessories"
+ }
+ },
+ "system": "drone system 4703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2568504119294,
+ 38.97224998214685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4704",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4704 accessories"
+ }
+ },
+ "system": "drone system 4704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3028076614813,
+ 38.83616755206671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4705",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4705 accessories"
+ }
+ },
+ "system": "drone system 4705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46561727053255,
+ 38.57774377692492
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4706",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4706 accessories"
+ }
+ },
+ "system": "drone system 4706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32273185863427,
+ 38.85367943159615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4707",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4707 accessories"
+ }
+ },
+ "system": "drone system 4707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5961702637785,
+ 38.601207136131016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4708",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4708 accessories"
+ }
+ },
+ "system": "drone system 4708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79604150901186,
+ 39.524144122251144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4709",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4709 accessories"
+ }
+ },
+ "system": "drone system 4709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76969936101311,
+ 38.05526447690222
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4710",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4710 accessories"
+ }
+ },
+ "system": "drone system 4710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42396056483372,
+ 38.60492681740656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4711",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4711 accessories"
+ }
+ },
+ "system": "drone system 4711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33874465697666,
+ 38.592064636750905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4712",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4712 accessories"
+ }
+ },
+ "system": "drone system 4712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25095887580605,
+ 38.26408764128897
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4713",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4713 accessories"
+ }
+ },
+ "system": "drone system 4713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54166348147989,
+ 38.192357492982644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4714",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4714 accessories"
+ }
+ },
+ "system": "drone system 4714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37990311989972,
+ 38.49524073186447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4715",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4715 accessories"
+ }
+ },
+ "system": "drone system 4715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65399512345886,
+ 38.50689401557004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4716",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4716 accessories"
+ }
+ },
+ "system": "drone system 4716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48119915277053,
+ 39.55217491931463
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4717",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4717 accessories"
+ }
+ },
+ "system": "drone system 4717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54200015978846,
+ 38.16948747253165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4718",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4718 accessories"
+ }
+ },
+ "system": "drone system 4718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4048458896038,
+ 38.96512423483777
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4719",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4719 accessories"
+ }
+ },
+ "system": "drone system 4719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88354326818481,
+ 38.85641149540066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4720",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4720 accessories"
+ }
+ },
+ "system": "drone system 4720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40284333200205,
+ 38.4064991977834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4721",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4721 accessories"
+ }
+ },
+ "system": "drone system 4721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63311892073607,
+ 38.28126697907683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4722",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4722 accessories"
+ }
+ },
+ "system": "drone system 4722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01131332694008,
+ 38.19877744490181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4723",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4723 accessories"
+ }
+ },
+ "system": "drone system 4723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46789361893565,
+ 38.81885761412241
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4724",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4724 accessories"
+ }
+ },
+ "system": "drone system 4724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5856543263466,
+ 39.30959629533633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4725",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4725 accessories"
+ }
+ },
+ "system": "drone system 4725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45980464608745,
+ 38.78212349826072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4726",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4726 accessories"
+ }
+ },
+ "system": "drone system 4726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43709341266315,
+ 39.383003716416866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4727",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4727 accessories"
+ }
+ },
+ "system": "drone system 4727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98852896233713,
+ 39.38853148354674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4728",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4728 accessories"
+ }
+ },
+ "system": "drone system 4728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97686655104428,
+ 38.89088425056983
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4729",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4729 accessories"
+ }
+ },
+ "system": "drone system 4729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33377800421871,
+ 38.56260594330935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4730",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4730 accessories"
+ }
+ },
+ "system": "drone system 4730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00725549220925,
+ 38.95600364483804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4731",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4731 accessories"
+ }
+ },
+ "system": "drone system 4731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19059920339615,
+ 39.33553089369192
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4732",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4732 accessories"
+ }
+ },
+ "system": "drone system 4732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84136574700163,
+ 38.34901487475907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4733",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4733 accessories"
+ }
+ },
+ "system": "drone system 4733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20175456416385,
+ 39.102648419112526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4734",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4734 accessories"
+ }
+ },
+ "system": "drone system 4734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09922501036499,
+ 38.483541458830324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4735",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4735 accessories"
+ }
+ },
+ "system": "drone system 4735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56697391483989,
+ 38.31530572586219
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4736",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4736 accessories"
+ }
+ },
+ "system": "drone system 4736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2281117309097,
+ 39.11474838022825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4737",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4737 accessories"
+ }
+ },
+ "system": "drone system 4737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58604693324229,
+ 38.56821730490901
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4738",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4738 accessories"
+ }
+ },
+ "system": "drone system 4738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79556950697062,
+ 39.269728086007916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4739",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4739 accessories"
+ }
+ },
+ "system": "drone system 4739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84375638405217,
+ 38.66972064791752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4740",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4740 accessories"
+ }
+ },
+ "system": "drone system 4740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64968005768245,
+ 38.66256198668086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4741",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4741 accessories"
+ }
+ },
+ "system": "drone system 4741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79933636063154,
+ 39.106301814233895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4742",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4742 accessories"
+ }
+ },
+ "system": "drone system 4742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72221120328047,
+ 39.027923202005645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4743",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4743 accessories"
+ }
+ },
+ "system": "drone system 4743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82582622951571,
+ 39.695391429659786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4744",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4744 accessories"
+ }
+ },
+ "system": "drone system 4744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5356605473612,
+ 39.08357956683852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4745",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4745 accessories"
+ }
+ },
+ "system": "drone system 4745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59821374554345,
+ 38.36983609288597
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4746",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4746 accessories"
+ }
+ },
+ "system": "drone system 4746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91053475592835,
+ 38.18184798562859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4747",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4747 accessories"
+ }
+ },
+ "system": "drone system 4747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.9130688276637,
+ 38.791479558912386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4748",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4748 accessories"
+ }
+ },
+ "system": "drone system 4748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89820846652906,
+ 38.87551218578914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4749",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4749 accessories"
+ }
+ },
+ "system": "drone system 4749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7023456318955,
+ 38.820071284840175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4750",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4750 accessories"
+ }
+ },
+ "system": "drone system 4750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68098314286583,
+ 38.989185322212144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4751",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4751 accessories"
+ }
+ },
+ "system": "drone system 4751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92060437706964,
+ 38.839689723284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4752",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4752 accessories"
+ }
+ },
+ "system": "drone system 4752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54507441180318,
+ 38.35594877612295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4753",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4753 accessories"
+ }
+ },
+ "system": "drone system 4753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30505586904566,
+ 39.47641784354227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4754",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4754 accessories"
+ }
+ },
+ "system": "drone system 4754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82019561093128,
+ 39.13329451745159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4755",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4755 accessories"
+ }
+ },
+ "system": "drone system 4755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28922493498418,
+ 38.64328778575384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4756",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4756 accessories"
+ }
+ },
+ "system": "drone system 4756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24036259675681,
+ 39.50463038449375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4757",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4757 accessories"
+ }
+ },
+ "system": "drone system 4757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19214820334882,
+ 38.981684121690655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4758",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4758 accessories"
+ }
+ },
+ "system": "drone system 4758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8157833833635,
+ 38.76792776679682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4759",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4759 accessories"
+ }
+ },
+ "system": "drone system 4759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70881359194392,
+ 39.20329885331878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4760",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4760 accessories"
+ }
+ },
+ "system": "drone system 4760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83271086030223,
+ 38.74262403535826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4761",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4761 accessories"
+ }
+ },
+ "system": "drone system 4761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10504372556524,
+ 39.76614631694419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4762",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4762 accessories"
+ }
+ },
+ "system": "drone system 4762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37538928659787,
+ 38.175625152101844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4763",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4763 accessories"
+ }
+ },
+ "system": "drone system 4763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30426190242986,
+ 38.547432024347835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4764",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4764 accessories"
+ }
+ },
+ "system": "drone system 4764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0809344245314,
+ 38.18087396888144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4765",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4765 accessories"
+ }
+ },
+ "system": "drone system 4765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39793519049161,
+ 39.50065555393643
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4766",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4766 accessories"
+ }
+ },
+ "system": "drone system 4766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71334597199102,
+ 38.34067170922884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4767",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4767 accessories"
+ }
+ },
+ "system": "drone system 4767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62534823360694,
+ 39.50112277624722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4768",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4768 accessories"
+ }
+ },
+ "system": "drone system 4768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44968089022441,
+ 38.88769328295313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4769",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4769 accessories"
+ }
+ },
+ "system": "drone system 4769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45367612598797,
+ 38.80061155280005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4770",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4770 accessories"
+ }
+ },
+ "system": "drone system 4770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63558104718138,
+ 38.572693731200985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4771",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4771 accessories"
+ }
+ },
+ "system": "drone system 4771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70059369501257,
+ 38.11540658098821
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4772",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4772 accessories"
+ }
+ },
+ "system": "drone system 4772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20721412727667,
+ 38.649852674193966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4773 accessories"
+ }
+ },
+ "system": "drone system 4773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84457064112738,
+ 38.19370394626196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4774",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4774 accessories"
+ }
+ },
+ "system": "drone system 4774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7970142150462,
+ 38.37120574769272
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4775",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4775 accessories"
+ }
+ },
+ "system": "drone system 4775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48014682629379,
+ 38.80164807992231
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4776",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4776 accessories"
+ }
+ },
+ "system": "drone system 4776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29830737932052,
+ 39.651255628173004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4777",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4777 accessories"
+ }
+ },
+ "system": "drone system 4777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14546103267409,
+ 38.959975669703695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4778",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4778 accessories"
+ }
+ },
+ "system": "drone system 4778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05337971080196,
+ 38.801806535847554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4779",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4779 accessories"
+ }
+ },
+ "system": "drone system 4779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67916204355531,
+ 38.33070960866144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4780",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4780 accessories"
+ }
+ },
+ "system": "drone system 4780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82288119073817,
+ 38.812695530160845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4781",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4781 accessories"
+ }
+ },
+ "system": "drone system 4781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21724182723757,
+ 39.2346501590859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4782",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4782 accessories"
+ }
+ },
+ "system": "drone system 4782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72204487061407,
+ 38.17930371951613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4783",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4783 accessories"
+ }
+ },
+ "system": "drone system 4783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75795657542058,
+ 39.03736677389768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4784",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4784 accessories"
+ }
+ },
+ "system": "drone system 4784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38107753408235,
+ 38.50424659044749
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4785",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4785 accessories"
+ }
+ },
+ "system": "drone system 4785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46036110977091,
+ 39.35026387372919
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4786",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4786 accessories"
+ }
+ },
+ "system": "drone system 4786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36690850396856,
+ 39.49602011464016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4787",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4787 accessories"
+ }
+ },
+ "system": "drone system 4787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52231385805656,
+ 38.6084706565334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4788",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4788 accessories"
+ }
+ },
+ "system": "drone system 4788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21555773129013,
+ 39.246382258086776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4789",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4789 accessories"
+ }
+ },
+ "system": "drone system 4789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55318693589479,
+ 38.28322332577264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4790",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4790 accessories"
+ }
+ },
+ "system": "drone system 4790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54539677694888,
+ 38.78249512959769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4791",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4791 accessories"
+ }
+ },
+ "system": "drone system 4791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13460322767962,
+ 38.52776603211364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4792",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4792 accessories"
+ }
+ },
+ "system": "drone system 4792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24362077305746,
+ 38.879837501849416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4793",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4793 accessories"
+ }
+ },
+ "system": "drone system 4793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6533042991826,
+ 38.24587068858735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4794",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4794 accessories"
+ }
+ },
+ "system": "drone system 4794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54204788881724,
+ 39.33268386612291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4795",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4795 accessories"
+ }
+ },
+ "system": "drone system 4795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50369666566567,
+ 38.72260216731714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4796",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4796 accessories"
+ }
+ },
+ "system": "drone system 4796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15872662589699,
+ 38.896544508473944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4797",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4797 accessories"
+ }
+ },
+ "system": "drone system 4797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14772292376436,
+ 38.580805655245456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4798",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4798 accessories"
+ }
+ },
+ "system": "drone system 4798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51983954452034,
+ 39.631660337412605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4799",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4799 accessories"
+ }
+ },
+ "system": "drone system 4799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80941436740522,
+ 38.45778401814097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4800",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4800 accessories"
+ }
+ },
+ "system": "drone system 4800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44209850133748,
+ 38.71620117531791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4801",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4801 accessories"
+ }
+ },
+ "system": "drone system 4801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12057321024025,
+ 38.11931666625466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4802",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4802 accessories"
+ }
+ },
+ "system": "drone system 4802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29532299980363,
+ 38.46206348458594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4803",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4803 accessories"
+ }
+ },
+ "system": "drone system 4803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04921057593849,
+ 38.578409363743084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4804",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4804 accessories"
+ }
+ },
+ "system": "drone system 4804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95369543137691,
+ 38.43698178534725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4805",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4805 accessories"
+ }
+ },
+ "system": "drone system 4805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32241406181515,
+ 39.2163914418324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4806",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4806 accessories"
+ }
+ },
+ "system": "drone system 4806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94656025452532,
+ 39.71856715331432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4807",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4807 accessories"
+ }
+ },
+ "system": "drone system 4807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83915824257181,
+ 38.70142473233586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4808",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4808 accessories"
+ }
+ },
+ "system": "drone system 4808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39851549682038,
+ 38.39454141563921
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4809",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4809 accessories"
+ }
+ },
+ "system": "drone system 4809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60228755349209,
+ 38.32667792452636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4810",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4810 accessories"
+ }
+ },
+ "system": "drone system 4810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42195714043005,
+ 38.76413937784213
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4811",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4811 accessories"
+ }
+ },
+ "system": "drone system 4811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95909105161253,
+ 39.68653603032036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4812",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4812 accessories"
+ }
+ },
+ "system": "drone system 4812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91629907433335,
+ 38.23104060352857
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4813",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4813 accessories"
+ }
+ },
+ "system": "drone system 4813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21640848817452,
+ 39.56066522113524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4814",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4814 accessories"
+ }
+ },
+ "system": "drone system 4814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24643131593999,
+ 38.174267877732596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4815",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4815 accessories"
+ }
+ },
+ "system": "drone system 4815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68118593966229,
+ 38.186222032028596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4816",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4816 accessories"
+ }
+ },
+ "system": "drone system 4816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06123347246583,
+ 39.76568215302046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4817",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4817 accessories"
+ }
+ },
+ "system": "drone system 4817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38019299951637,
+ 38.81760693785964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4818",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4818 accessories"
+ }
+ },
+ "system": "drone system 4818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04990683004009,
+ 39.303164939013215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4819",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4819 accessories"
+ }
+ },
+ "system": "drone system 4819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24567315258778,
+ 38.16454438773176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4820",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4820 accessories"
+ }
+ },
+ "system": "drone system 4820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89203405328776,
+ 39.053049064961506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4821",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4821 accessories"
+ }
+ },
+ "system": "drone system 4821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89031945496222,
+ 38.51070527809431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4822",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4822 accessories"
+ }
+ },
+ "system": "drone system 4822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42378201820797,
+ 39.162585488986736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4823",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4823 accessories"
+ }
+ },
+ "system": "drone system 4823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15454770132966,
+ 38.485604352690274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4824",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4824 accessories"
+ }
+ },
+ "system": "drone system 4824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52343667313457,
+ 38.71145003154502
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4825",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4825 accessories"
+ }
+ },
+ "system": "drone system 4825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58236274324088,
+ 38.969506109526264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4826",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4826 accessories"
+ }
+ },
+ "system": "drone system 4826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82357794342383,
+ 39.10665648186378
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4827",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4827 accessories"
+ }
+ },
+ "system": "drone system 4827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19962491446664,
+ 39.07292068539409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4828",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4828 accessories"
+ }
+ },
+ "system": "drone system 4828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10689875043558,
+ 38.814910501075396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4829",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4829 accessories"
+ }
+ },
+ "system": "drone system 4829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67058460289077,
+ 39.171585959867976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4830",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4830 accessories"
+ }
+ },
+ "system": "drone system 4830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94225897251019,
+ 39.70268968273347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4831",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4831 accessories"
+ }
+ },
+ "system": "drone system 4831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3413783420036,
+ 38.3006930210145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4832",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4832 accessories"
+ }
+ },
+ "system": "drone system 4832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2328249049758,
+ 38.42289937924928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4833",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4833 accessories"
+ }
+ },
+ "system": "drone system 4833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3055176866244,
+ 38.25236290231115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4834",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4834 accessories"
+ }
+ },
+ "system": "drone system 4834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88604238215053,
+ 38.88950068846329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4835",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4835 accessories"
+ }
+ },
+ "system": "drone system 4835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96401444952757,
+ 39.648317255738704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4836",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4836 accessories"
+ }
+ },
+ "system": "drone system 4836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23832998213292,
+ 38.38370736116928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4837",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4837 accessories"
+ }
+ },
+ "system": "drone system 4837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70835752150865,
+ 39.14331819603336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4838",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4838 accessories"
+ }
+ },
+ "system": "drone system 4838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66332150182106,
+ 38.32576578613991
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4839",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4839 accessories"
+ }
+ },
+ "system": "drone system 4839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82106912507253,
+ 38.238038251093116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4840",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4840 accessories"
+ }
+ },
+ "system": "drone system 4840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56545749325768,
+ 39.29247275066291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4841",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4841 accessories"
+ }
+ },
+ "system": "drone system 4841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42597047329895,
+ 38.29046079630929
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4842",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4842 accessories"
+ }
+ },
+ "system": "drone system 4842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62864178832984,
+ 38.69909215759119
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4843",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4843 accessories"
+ }
+ },
+ "system": "drone system 4843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.740391292907,
+ 39.72565213511083
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4844",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4844 accessories"
+ }
+ },
+ "system": "drone system 4844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31146378998044,
+ 38.510453125509706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4845",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4845 accessories"
+ }
+ },
+ "system": "drone system 4845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99766575931827,
+ 38.5044120677188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4846",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4846 accessories"
+ }
+ },
+ "system": "drone system 4846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56934712058977,
+ 38.43480168912536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4847",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4847 accessories"
+ }
+ },
+ "system": "drone system 4847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61049018870703,
+ 39.08472965997885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4848",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4848 accessories"
+ }
+ },
+ "system": "drone system 4848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37898920655253,
+ 39.33973290791571
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4849",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4849 accessories"
+ }
+ },
+ "system": "drone system 4849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77719773724863,
+ 39.757044237994236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4850",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4850 accessories"
+ }
+ },
+ "system": "drone system 4850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27220249547896,
+ 38.97034342213767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4851",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4851 accessories"
+ }
+ },
+ "system": "drone system 4851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62803573849337,
+ 38.81082566691079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4852",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4852 accessories"
+ }
+ },
+ "system": "drone system 4852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94497494913142,
+ 38.616153678917314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4853",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4853 accessories"
+ }
+ },
+ "system": "drone system 4853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72547827767916,
+ 38.220403076278004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4854",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4854 accessories"
+ }
+ },
+ "system": "drone system 4854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46728808011832,
+ 39.002427776894734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4855",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4855 accessories"
+ }
+ },
+ "system": "drone system 4855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24121549542025,
+ 38.39254156957533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4856",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4856 accessories"
+ }
+ },
+ "system": "drone system 4856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91224609937929,
+ 38.4470148061694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4857",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4857 accessories"
+ }
+ },
+ "system": "drone system 4857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31593999120804,
+ 39.10636495567413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4858",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4858 accessories"
+ }
+ },
+ "system": "drone system 4858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65890382021291,
+ 38.815412163701936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4859",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4859 accessories"
+ }
+ },
+ "system": "drone system 4859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1443591377204,
+ 38.35824318659876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4860",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4860 accessories"
+ }
+ },
+ "system": "drone system 4860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80977374802129,
+ 38.23852356097291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4861",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4861 accessories"
+ }
+ },
+ "system": "drone system 4861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17043968617442,
+ 38.62382628376831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4862",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4862 accessories"
+ }
+ },
+ "system": "drone system 4862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8503465757301,
+ 39.29833501230345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4863",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4863 accessories"
+ }
+ },
+ "system": "drone system 4863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67825887858943,
+ 38.62367941702525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4864",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4864 accessories"
+ }
+ },
+ "system": "drone system 4864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25233571301594,
+ 38.29738081263092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4865",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4865 accessories"
+ }
+ },
+ "system": "drone system 4865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45706969016501,
+ 38.67102272628889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4866",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4866 accessories"
+ }
+ },
+ "system": "drone system 4866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27402904965719,
+ 39.02555307559214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4867",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4867 accessories"
+ }
+ },
+ "system": "drone system 4867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44346422331827,
+ 38.319432288724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4868",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4868 accessories"
+ }
+ },
+ "system": "drone system 4868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.562141120489,
+ 38.64944941784688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4869",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4869 accessories"
+ }
+ },
+ "system": "drone system 4869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92536478008562,
+ 39.36004092924717
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4870",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4870 accessories"
+ }
+ },
+ "system": "drone system 4870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19899660009516,
+ 39.43337126616471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4871",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4871 accessories"
+ }
+ },
+ "system": "drone system 4871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7959799902443,
+ 38.15393628360497
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4872",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4872 accessories"
+ }
+ },
+ "system": "drone system 4872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51512282851257,
+ 38.51562482058893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4873",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4873 accessories"
+ }
+ },
+ "system": "drone system 4873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36869503956768,
+ 39.58519186298347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4874",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4874 accessories"
+ }
+ },
+ "system": "drone system 4874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61382144181918,
+ 38.40053661488782
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4875",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4875 accessories"
+ }
+ },
+ "system": "drone system 4875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47978802233352,
+ 38.818116466982936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4876",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4876 accessories"
+ }
+ },
+ "system": "drone system 4876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31428816341486,
+ 38.46390087173289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4877",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4877 accessories"
+ }
+ },
+ "system": "drone system 4877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4733540929612,
+ 39.37838269081269
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4878",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4878 accessories"
+ }
+ },
+ "system": "drone system 4878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06571000215799,
+ 38.3513379585098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4879",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4879 accessories"
+ }
+ },
+ "system": "drone system 4879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33193486394387,
+ 38.65507671951577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4880",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4880 accessories"
+ }
+ },
+ "system": "drone system 4880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77643702740166,
+ 38.072641836286735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4881 accessories"
+ }
+ },
+ "system": "drone system 4881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5387386935778,
+ 39.294079683202014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4882",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4882 accessories"
+ }
+ },
+ "system": "drone system 4882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82359673832197,
+ 39.05340153985566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4883",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4883 accessories"
+ }
+ },
+ "system": "drone system 4883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64008084103335,
+ 39.00871653087826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4884",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4884 accessories"
+ }
+ },
+ "system": "drone system 4884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38895237742288,
+ 38.32238958583981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4885",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4885 accessories"
+ }
+ },
+ "system": "drone system 4885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78811939716645,
+ 38.43043089651161
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4886",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4886 accessories"
+ }
+ },
+ "system": "drone system 4886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03679107678884,
+ 38.113969729360385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4887",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4887 accessories"
+ }
+ },
+ "system": "drone system 4887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72277868573228,
+ 38.959379593394715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4888",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4888 accessories"
+ }
+ },
+ "system": "drone system 4888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16512010537211,
+ 38.758307002495386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4889",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4889 accessories"
+ }
+ },
+ "system": "drone system 4889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45902288238675,
+ 39.137438929641824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4890",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4890 accessories"
+ }
+ },
+ "system": "drone system 4890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31799889988258,
+ 38.614422898005074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4891",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4891 accessories"
+ }
+ },
+ "system": "drone system 4891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09849397208721,
+ 38.874961807990296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4892",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4892 accessories"
+ }
+ },
+ "system": "drone system 4892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83903343989158,
+ 39.06073173722868
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4893",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4893 accessories"
+ }
+ },
+ "system": "drone system 4893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98947924869411,
+ 38.47604502117267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4894",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4894 accessories"
+ }
+ },
+ "system": "drone system 4894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24874431125636,
+ 39.510409655573014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4895",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4895 accessories"
+ }
+ },
+ "system": "drone system 4895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75067519183231,
+ 38.16356363421073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4896",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4896 accessories"
+ }
+ },
+ "system": "drone system 4896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38500982372703,
+ 38.41562656358279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4897",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4897 accessories"
+ }
+ },
+ "system": "drone system 4897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32788902992074,
+ 39.364924776280276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4898",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4898 accessories"
+ }
+ },
+ "system": "drone system 4898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11678783113689,
+ 39.70600539820397
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4899",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4899 accessories"
+ }
+ },
+ "system": "drone system 4899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18004098278435,
+ 38.97666841400517
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4900",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4900 accessories"
+ }
+ },
+ "system": "drone system 4900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54297780476013,
+ 39.45038166477931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4901",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4901 accessories"
+ }
+ },
+ "system": "drone system 4901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53851322462731,
+ 39.297864577122205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4902",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4902 accessories"
+ }
+ },
+ "system": "drone system 4902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73091908177067,
+ 38.50889308575791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4903",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4903 accessories"
+ }
+ },
+ "system": "drone system 4903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79645374334802,
+ 39.29280724749826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4904",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4904 accessories"
+ }
+ },
+ "system": "drone system 4904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12138331477884,
+ 38.01334432456777
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4905",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4905 accessories"
+ }
+ },
+ "system": "drone system 4905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21843095384521,
+ 39.42349311957116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4906",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4906 accessories"
+ }
+ },
+ "system": "drone system 4906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16082604613156,
+ 38.151118942555456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4907",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4907 accessories"
+ }
+ },
+ "system": "drone system 4907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39530130435377,
+ 38.903810367988854
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4908",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4908 accessories"
+ }
+ },
+ "system": "drone system 4908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77671028557926,
+ 39.2331961494549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4909",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4909 accessories"
+ }
+ },
+ "system": "drone system 4909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93918338088912,
+ 39.25219279994626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4910",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4910 accessories"
+ }
+ },
+ "system": "drone system 4910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51731461334548,
+ 39.62868624884039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4911",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4911 accessories"
+ }
+ },
+ "system": "drone system 4911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75649456846683,
+ 39.38543370923991
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4912",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4912 accessories"
+ }
+ },
+ "system": "drone system 4912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79580045277957,
+ 38.87646907922647
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4913",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4913 accessories"
+ }
+ },
+ "system": "drone system 4913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24078842976574,
+ 39.29856677944661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4914",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4914 accessories"
+ }
+ },
+ "system": "drone system 4914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47617639580925,
+ 39.496373336556644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4915",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4915 accessories"
+ }
+ },
+ "system": "drone system 4915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4868536522359,
+ 38.212239437153265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4916",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4916 accessories"
+ }
+ },
+ "system": "drone system 4916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70371637925015,
+ 39.026402493134384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4917",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4917 accessories"
+ }
+ },
+ "system": "drone system 4917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07475015497434,
+ 39.70753209124109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4918",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4918 accessories"
+ }
+ },
+ "system": "drone system 4918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0156835815917,
+ 38.17032337583632
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4919",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4919 accessories"
+ }
+ },
+ "system": "drone system 4919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03891842158396,
+ 39.65761253681431
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4920",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4920 accessories"
+ }
+ },
+ "system": "drone system 4920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33330606034997,
+ 38.13406870028828
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4921",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4921 accessories"
+ }
+ },
+ "system": "drone system 4921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61095635798631,
+ 39.55872201902312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4922",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4922 accessories"
+ }
+ },
+ "system": "drone system 4922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81080278025357,
+ 38.80752688547679
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4923",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4923 accessories"
+ }
+ },
+ "system": "drone system 4923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18737038481078,
+ 39.129928995973074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4924",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4924 accessories"
+ }
+ },
+ "system": "drone system 4924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5370789152868,
+ 39.294802901996995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4925",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4925 accessories"
+ }
+ },
+ "system": "drone system 4925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99105632312758,
+ 39.77535782806998
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4926",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4926 accessories"
+ }
+ },
+ "system": "drone system 4926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88092861996503,
+ 39.17388288799723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4927",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4927 accessories"
+ }
+ },
+ "system": "drone system 4927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24343289743686,
+ 39.55844376016063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4928",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4928 accessories"
+ }
+ },
+ "system": "drone system 4928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66549938834318,
+ 38.338483693728946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4929",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4929 accessories"
+ }
+ },
+ "system": "drone system 4929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74575781168193,
+ 38.45594873701704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4930",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4930 accessories"
+ }
+ },
+ "system": "drone system 4930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01020768213174,
+ 38.4175780581062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4931",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4931 accessories"
+ }
+ },
+ "system": "drone system 4931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55785948749097,
+ 38.982108624367704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4932",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4932 accessories"
+ }
+ },
+ "system": "drone system 4932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9469217503574,
+ 38.26561038929425
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4933",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4933 accessories"
+ }
+ },
+ "system": "drone system 4933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37074542670949,
+ 39.17984832846877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4934",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4934 accessories"
+ }
+ },
+ "system": "drone system 4934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51119833348062,
+ 39.62205468725649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4935",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4935 accessories"
+ }
+ },
+ "system": "drone system 4935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63655644227188,
+ 39.38608479422709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4936",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4936 accessories"
+ }
+ },
+ "system": "drone system 4936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24496836238994,
+ 39.640830732041984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4937",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4937 accessories"
+ }
+ },
+ "system": "drone system 4937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20250592605872,
+ 38.661128253417104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4938",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4938 accessories"
+ }
+ },
+ "system": "drone system 4938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78323425813193,
+ 39.296228201908605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4939",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4939 accessories"
+ }
+ },
+ "system": "drone system 4939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9110038220401,
+ 38.993846213475585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4940",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4940 accessories"
+ }
+ },
+ "system": "drone system 4940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30200355960287,
+ 38.13058860048642
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4941",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4941 accessories"
+ }
+ },
+ "system": "drone system 4941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54285570013985,
+ 38.83171959589567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4942",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4942 accessories"
+ }
+ },
+ "system": "drone system 4942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97183457831598,
+ 38.83704489344422
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4943",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4943 accessories"
+ }
+ },
+ "system": "drone system 4943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55555531481275,
+ 39.617191128238694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4944",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4944 accessories"
+ }
+ },
+ "system": "drone system 4944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13269040534321,
+ 38.92719455154171
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4945",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4945 accessories"
+ }
+ },
+ "system": "drone system 4945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63696015816693,
+ 38.82761226904172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4946",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4946 accessories"
+ }
+ },
+ "system": "drone system 4946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73622342885629,
+ 38.576519612883295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4947",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4947 accessories"
+ }
+ },
+ "system": "drone system 4947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21585079158827,
+ 38.69626834642649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4948",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4948 accessories"
+ }
+ },
+ "system": "drone system 4948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59252121969104,
+ 38.78657127416153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4949",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4949 accessories"
+ }
+ },
+ "system": "drone system 4949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.672151183259,
+ 38.41777766227899
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4950",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4950 accessories"
+ }
+ },
+ "system": "drone system 4950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05807979779668,
+ 39.298410545683446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4951",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4951 accessories"
+ }
+ },
+ "system": "drone system 4951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86030601705812,
+ 38.54976546314682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4952",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4952 accessories"
+ }
+ },
+ "system": "drone system 4952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.234094468268,
+ 39.00123301242093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4953",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4953 accessories"
+ }
+ },
+ "system": "drone system 4953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18618653004943,
+ 39.00002276090791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4954",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4954 accessories"
+ }
+ },
+ "system": "drone system 4954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55021542822995,
+ 38.533757706217685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4955",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4955 accessories"
+ }
+ },
+ "system": "drone system 4955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8377490450147,
+ 39.167491584329106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4956",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4956 accessories"
+ }
+ },
+ "system": "drone system 4956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63299011252164,
+ 39.28871357016973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4957",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4957 accessories"
+ }
+ },
+ "system": "drone system 4957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17061928110942,
+ 39.092145998857745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4958",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4958 accessories"
+ }
+ },
+ "system": "drone system 4958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38190832900652,
+ 39.02363103082856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4959",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4959 accessories"
+ }
+ },
+ "system": "drone system 4959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63789350603805,
+ 38.67716132831858
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4960",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4960 accessories"
+ }
+ },
+ "system": "drone system 4960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57456971133941,
+ 38.17812607252744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4961",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4961 accessories"
+ }
+ },
+ "system": "drone system 4961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72489256741184,
+ 38.6384995476497
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4962",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4962 accessories"
+ }
+ },
+ "system": "drone system 4962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04344148789588,
+ 38.27585435014522
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4963",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4963 accessories"
+ }
+ },
+ "system": "drone system 4963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63104454575644,
+ 38.24796583461714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4964",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4964 accessories"
+ }
+ },
+ "system": "drone system 4964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5786757254585,
+ 39.23852150042749
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4965",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4965 accessories"
+ }
+ },
+ "system": "drone system 4965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86131955565425,
+ 39.15908977846722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4966",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4966 accessories"
+ }
+ },
+ "system": "drone system 4966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82692311840378,
+ 38.99437940258415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4967",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4967 accessories"
+ }
+ },
+ "system": "drone system 4967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13978361648317,
+ 38.70471535980745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4968",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4968 accessories"
+ }
+ },
+ "system": "drone system 4968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93650336261096,
+ 39.31020564297595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4969",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4969 accessories"
+ }
+ },
+ "system": "drone system 4969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26673860095656,
+ 38.180549015636586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4970",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4970 accessories"
+ }
+ },
+ "system": "drone system 4970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97602465999547,
+ 38.51242346489639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4971",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4971 accessories"
+ }
+ },
+ "system": "drone system 4971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39380933615679,
+ 39.293408346674916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4972",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4972 accessories"
+ }
+ },
+ "system": "drone system 4972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.865867507077,
+ 38.72946759993676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4973",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4973 accessories"
+ }
+ },
+ "system": "drone system 4973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34045567970271,
+ 39.396864875999384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4974",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4974 accessories"
+ }
+ },
+ "system": "drone system 4974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89430452588203,
+ 38.51125807791081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4975",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4975 accessories"
+ }
+ },
+ "system": "drone system 4975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80427756132,
+ 38.95151336036394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4976",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4976 accessories"
+ }
+ },
+ "system": "drone system 4976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00735158514516,
+ 38.8883437059536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4977",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4977 accessories"
+ }
+ },
+ "system": "drone system 4977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92645815905045,
+ 38.85955190933653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4978",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4978 accessories"
+ }
+ },
+ "system": "drone system 4978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52929921077556,
+ 39.58952471141506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4979",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4979 accessories"
+ }
+ },
+ "system": "drone system 4979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.288523567264,
+ 39.241700930712454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4980",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4980 accessories"
+ }
+ },
+ "system": "drone system 4980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73396733923609,
+ 38.56367312327671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4981",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4981 accessories"
+ }
+ },
+ "system": "drone system 4981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21403309595136,
+ 38.605534634963234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4982",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4982 accessories"
+ }
+ },
+ "system": "drone system 4982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41454999633896,
+ 39.008737252628364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4983",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4983 accessories"
+ }
+ },
+ "system": "drone system 4983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89708869054012,
+ 38.14785020824473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4984",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4984 accessories"
+ }
+ },
+ "system": "drone system 4984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20982207546774,
+ 38.99002446741798
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4985",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4985 accessories"
+ }
+ },
+ "system": "drone system 4985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03715707134289,
+ 38.193642589228745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4986",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4986 accessories"
+ }
+ },
+ "system": "drone system 4986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39464703199289,
+ 39.25612695313446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4987",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4987 accessories"
+ }
+ },
+ "system": "drone system 4987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80838284859242,
+ 38.04573170723545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4988",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4988 accessories"
+ }
+ },
+ "system": "drone system 4988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59739214533641,
+ 38.24801374714168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4989",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4989 accessories"
+ }
+ },
+ "system": "drone system 4989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89841780002995,
+ 38.393362642988905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4990",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4990 accessories"
+ }
+ },
+ "system": "drone system 4990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66338988740135,
+ 39.03168155838475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4991",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4991 accessories"
+ }
+ },
+ "system": "drone system 4991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88716160251946,
+ 38.8151707755342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4992",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4992 accessories"
+ }
+ },
+ "system": "drone system 4992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92295742342075,
+ 39.68375760971931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4993",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4993 accessories"
+ }
+ },
+ "system": "drone system 4993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77236766069464,
+ 38.4541943950364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4994",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4994 accessories"
+ }
+ },
+ "system": "drone system 4994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2547697177176,
+ 39.71235518000023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4995",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4995 accessories"
+ }
+ },
+ "system": "drone system 4995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39027677319895,
+ 39.0865669812929
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4996",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4996 accessories"
+ }
+ },
+ "system": "drone system 4996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62863480637054,
+ 39.37958692765067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4997",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4997 accessories"
+ }
+ },
+ "system": "drone system 4997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63917644907494,
+ 39.10728381162086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4998",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4998 accessories"
+ }
+ },
+ "system": "drone system 4998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05184197090479,
+ 39.16416704111252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone4999",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone4999 accessories"
+ }
+ },
+ "system": "drone system 4999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96576403644573,
+ 38.463114223194474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5000",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5000 accessories"
+ }
+ },
+ "system": "drone system 5000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45997326953865,
+ 39.260579466956465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5001",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5001 accessories"
+ }
+ },
+ "system": "drone system 5001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6784674457087,
+ 38.1030125246728
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5002",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5002 accessories"
+ }
+ },
+ "system": "drone system 5002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7020454260176,
+ 38.63601696761713
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5003",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5003 accessories"
+ }
+ },
+ "system": "drone system 5003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72268469799513,
+ 38.745336169567764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5004",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5004 accessories"
+ }
+ },
+ "system": "drone system 5004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46590721088391,
+ 38.98552018923124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5005",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5005 accessories"
+ }
+ },
+ "system": "drone system 5005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4289896650321,
+ 38.631009306148336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5006",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5006 accessories"
+ }
+ },
+ "system": "drone system 5006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80777665323356,
+ 38.6351685168893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5007",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5007 accessories"
+ }
+ },
+ "system": "drone system 5007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52970433304264,
+ 39.08425595839125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5008",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5008 accessories"
+ }
+ },
+ "system": "drone system 5008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43918333593943,
+ 38.64696044468611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5009",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5009 accessories"
+ }
+ },
+ "system": "drone system 5009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88641870875715,
+ 38.69633302253217
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5010",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5010 accessories"
+ }
+ },
+ "system": "drone system 5010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61314151198609,
+ 39.09439857805168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5011",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5011 accessories"
+ }
+ },
+ "system": "drone system 5011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09709909205371,
+ 38.21827590783598
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5012",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5012 accessories"
+ }
+ },
+ "system": "drone system 5012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92182681192118,
+ 38.660814862727236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5013",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5013 accessories"
+ }
+ },
+ "system": "drone system 5013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47930985611335,
+ 38.4130220045824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5014",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5014 accessories"
+ }
+ },
+ "system": "drone system 5014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39468563410436,
+ 38.95455204953841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5015",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5015 accessories"
+ }
+ },
+ "system": "drone system 5015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76603622021526,
+ 38.65924484825383
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5016",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5016 accessories"
+ }
+ },
+ "system": "drone system 5016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12417894779497,
+ 38.922092868023995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5017",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5017 accessories"
+ }
+ },
+ "system": "drone system 5017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6137637972498,
+ 38.412623970756975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5018",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5018 accessories"
+ }
+ },
+ "system": "drone system 5018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16931060771701,
+ 38.750814196152454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5019",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5019 accessories"
+ }
+ },
+ "system": "drone system 5019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4211952358733,
+ 38.524103024846916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5020",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5020 accessories"
+ }
+ },
+ "system": "drone system 5020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12711077658278,
+ 39.562977791125704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5021",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5021 accessories"
+ }
+ },
+ "system": "drone system 5021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23360796405198,
+ 38.109276577115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5022",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5022 accessories"
+ }
+ },
+ "system": "drone system 5022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2797129055222,
+ 39.688508867686686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5023",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5023 accessories"
+ }
+ },
+ "system": "drone system 5023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52979867649458,
+ 38.311258428709976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5024",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5024 accessories"
+ }
+ },
+ "system": "drone system 5024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00881881850904,
+ 38.18811846354078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5025",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5025 accessories"
+ }
+ },
+ "system": "drone system 5025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64166203795135,
+ 38.768207478057676
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5026",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5026 accessories"
+ }
+ },
+ "system": "drone system 5026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3554927618463,
+ 38.81754361618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5027",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5027 accessories"
+ }
+ },
+ "system": "drone system 5027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4012050089296,
+ 38.14036874464872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5028",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5028 accessories"
+ }
+ },
+ "system": "drone system 5028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64982446350056,
+ 38.78764336142919
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5029",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5029 accessories"
+ }
+ },
+ "system": "drone system 5029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83317506491898,
+ 38.607094536352186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5030",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5030 accessories"
+ }
+ },
+ "system": "drone system 5030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32504147294482,
+ 39.16409469885877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5031",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5031 accessories"
+ }
+ },
+ "system": "drone system 5031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41629860532046,
+ 39.65407766108639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5032",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5032 accessories"
+ }
+ },
+ "system": "drone system 5032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82751434748873,
+ 39.02236681073474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5033",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5033 accessories"
+ }
+ },
+ "system": "drone system 5033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09142110727505,
+ 39.427380782731674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5034",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5034 accessories"
+ }
+ },
+ "system": "drone system 5034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21220179090315,
+ 39.25123909294675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5035",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5035 accessories"
+ }
+ },
+ "system": "drone system 5035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55846522608077,
+ 38.470908826866825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5036",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5036 accessories"
+ }
+ },
+ "system": "drone system 5036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21241678820302,
+ 38.91899354563704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5037",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5037 accessories"
+ }
+ },
+ "system": "drone system 5037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17227265584104,
+ 38.45085618105815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5038",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5038 accessories"
+ }
+ },
+ "system": "drone system 5038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98455029384577,
+ 39.21525181611063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5039",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5039 accessories"
+ }
+ },
+ "system": "drone system 5039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22892827847792,
+ 38.99404101600644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5040",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5040 accessories"
+ }
+ },
+ "system": "drone system 5040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42024413372236,
+ 38.91484744410655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5041",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5041 accessories"
+ }
+ },
+ "system": "drone system 5041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3251509588616,
+ 39.2343522188227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5042",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5042 accessories"
+ }
+ },
+ "system": "drone system 5042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5401071982809,
+ 38.22538768669974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5043",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5043 accessories"
+ }
+ },
+ "system": "drone system 5043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44795668968332,
+ 39.237427804727595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5044",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5044 accessories"
+ }
+ },
+ "system": "drone system 5044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54259335727575,
+ 39.38741668271864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5045",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5045 accessories"
+ }
+ },
+ "system": "drone system 5045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54744787636601,
+ 39.26252602847653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5046",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5046 accessories"
+ }
+ },
+ "system": "drone system 5046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72508445559522,
+ 38.888325042492106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5047",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5047 accessories"
+ }
+ },
+ "system": "drone system 5047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54429854256868,
+ 39.38933397156662
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5048",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5048 accessories"
+ }
+ },
+ "system": "drone system 5048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53685786121459,
+ 39.292528319457986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5049",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5049 accessories"
+ }
+ },
+ "system": "drone system 5049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21914835478299,
+ 38.82042210974694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5050",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5050 accessories"
+ }
+ },
+ "system": "drone system 5050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18143605365802,
+ 38.993447575206275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5051",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5051 accessories"
+ }
+ },
+ "system": "drone system 5051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77341827272696,
+ 39.2650778737421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5052",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5052 accessories"
+ }
+ },
+ "system": "drone system 5052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11566252797596,
+ 38.56218058613943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5053",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5053 accessories"
+ }
+ },
+ "system": "drone system 5053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28866141462406,
+ 39.472585067743324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5054",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5054 accessories"
+ }
+ },
+ "system": "drone system 5054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56099913622005,
+ 38.49931316868377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5055",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5055 accessories"
+ }
+ },
+ "system": "drone system 5055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73427716342898,
+ 38.897655677171585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5056",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5056 accessories"
+ }
+ },
+ "system": "drone system 5056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87174004971212,
+ 38.85930489783302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5057",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5057 accessories"
+ }
+ },
+ "system": "drone system 5057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6441038820697,
+ 38.512159465461416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5058",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5058 accessories"
+ }
+ },
+ "system": "drone system 5058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18768791767151,
+ 38.45098940699616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5059",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5059 accessories"
+ }
+ },
+ "system": "drone system 5059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48364190162594,
+ 39.507264712320556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5060",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5060 accessories"
+ }
+ },
+ "system": "drone system 5060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31229439743386,
+ 38.63224670458866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5061",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5061 accessories"
+ }
+ },
+ "system": "drone system 5061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81529288753761,
+ 39.645068484773766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5062",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5062 accessories"
+ }
+ },
+ "system": "drone system 5062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9704137095779,
+ 38.731414168311794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5063",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5063 accessories"
+ }
+ },
+ "system": "drone system 5063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59514406172869,
+ 38.35441756416259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5064",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5064 accessories"
+ }
+ },
+ "system": "drone system 5064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46059675612653,
+ 38.686626628676656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5065",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5065 accessories"
+ }
+ },
+ "system": "drone system 5065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28495614282109,
+ 38.48320624386068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5066",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5066 accessories"
+ }
+ },
+ "system": "drone system 5066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27899256509836,
+ 38.80917124125842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5067",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5067 accessories"
+ }
+ },
+ "system": "drone system 5067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26035962983694,
+ 39.06911153920947
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5068",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5068 accessories"
+ }
+ },
+ "system": "drone system 5068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05489751681684,
+ 39.206699989491106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5069",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5069 accessories"
+ }
+ },
+ "system": "drone system 5069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.93548305274334,
+ 38.91662473883123
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5070",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5070 accessories"
+ }
+ },
+ "system": "drone system 5070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20333756165448,
+ 38.50222684577123
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5071",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5071 accessories"
+ }
+ },
+ "system": "drone system 5071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53305444084549,
+ 38.89454908409868
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5072",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5072 accessories"
+ }
+ },
+ "system": "drone system 5072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46545736248308,
+ 38.747516205115026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5073",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5073 accessories"
+ }
+ },
+ "system": "drone system 5073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30590215833679,
+ 38.72504807234403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5074",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5074 accessories"
+ }
+ },
+ "system": "drone system 5074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34877709214484,
+ 38.49761076433411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5075",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5075 accessories"
+ }
+ },
+ "system": "drone system 5075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76621999378054,
+ 39.07811362486867
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5076",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5076 accessories"
+ }
+ },
+ "system": "drone system 5076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45444902346628,
+ 38.906296768011636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5077",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5077 accessories"
+ }
+ },
+ "system": "drone system 5077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61358234408378,
+ 38.917778195351985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5078",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5078 accessories"
+ }
+ },
+ "system": "drone system 5078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45873922192668,
+ 39.56392939129301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5079",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5079 accessories"
+ }
+ },
+ "system": "drone system 5079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04587155897495,
+ 38.473710481171416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5080",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5080 accessories"
+ }
+ },
+ "system": "drone system 5080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2742115401967,
+ 38.6307101028484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5081",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5081 accessories"
+ }
+ },
+ "system": "drone system 5081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82887969074504,
+ 39.130269842664184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5082",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5082 accessories"
+ }
+ },
+ "system": "drone system 5082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86516113908178,
+ 38.55063655392334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5083",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5083 accessories"
+ }
+ },
+ "system": "drone system 5083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82855213768336,
+ 38.57471510766258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5084",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5084 accessories"
+ }
+ },
+ "system": "drone system 5084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57460107433715,
+ 38.534903460122514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5085",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5085 accessories"
+ }
+ },
+ "system": "drone system 5085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43029404757897,
+ 39.46477888551169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5086",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5086 accessories"
+ }
+ },
+ "system": "drone system 5086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4129305378329,
+ 39.07967729285546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5087",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5087 accessories"
+ }
+ },
+ "system": "drone system 5087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91517333448331,
+ 39.070909864941115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5088",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5088 accessories"
+ }
+ },
+ "system": "drone system 5088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52232658844959,
+ 38.18845354219893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5089",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5089 accessories"
+ }
+ },
+ "system": "drone system 5089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44047661047529,
+ 38.37682182537742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5090",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5090 accessories"
+ }
+ },
+ "system": "drone system 5090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32352068506886,
+ 39.49316215625712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5091",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5091 accessories"
+ }
+ },
+ "system": "drone system 5091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57448310657728,
+ 38.33955356550371
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5092",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5092 accessories"
+ }
+ },
+ "system": "drone system 5092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74081734664055,
+ 38.32134408684784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5093",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5093 accessories"
+ }
+ },
+ "system": "drone system 5093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73586242921346,
+ 39.39559562101138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5094",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5094 accessories"
+ }
+ },
+ "system": "drone system 5094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95145224942686,
+ 38.84376255250916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5095",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5095 accessories"
+ }
+ },
+ "system": "drone system 5095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48342121477735,
+ 38.223194324670416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5096",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5096 accessories"
+ }
+ },
+ "system": "drone system 5096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98146264292707,
+ 39.744790285637386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5097",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5097 accessories"
+ }
+ },
+ "system": "drone system 5097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46921242633917,
+ 39.52660404035119
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5098",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5098 accessories"
+ }
+ },
+ "system": "drone system 5098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25512273598864,
+ 38.72515854495792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5099",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5099 accessories"
+ }
+ },
+ "system": "drone system 5099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90105369476,
+ 38.59249078101614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5100",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5100 accessories"
+ }
+ },
+ "system": "drone system 5100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23248689637215,
+ 39.0352278909178
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5101",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5101 accessories"
+ }
+ },
+ "system": "drone system 5101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20111586583018,
+ 39.29472022145942
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5102",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5102 accessories"
+ }
+ },
+ "system": "drone system 5102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05853695507757,
+ 38.16293328424183
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5103",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5103 accessories"
+ }
+ },
+ "system": "drone system 5103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68708282954923,
+ 39.34349433400428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5104",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5104 accessories"
+ }
+ },
+ "system": "drone system 5104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94525401505408,
+ 38.25765561692131
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5105",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5105 accessories"
+ }
+ },
+ "system": "drone system 5105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40183300339514,
+ 39.173819092977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5106",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5106 accessories"
+ }
+ },
+ "system": "drone system 5106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8252161777723,
+ 38.54559401635516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5107",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5107 accessories"
+ }
+ },
+ "system": "drone system 5107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5598720241997,
+ 38.500302049587546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5108",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5108 accessories"
+ }
+ },
+ "system": "drone system 5108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04468593675482,
+ 39.21555729053298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5109",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5109 accessories"
+ }
+ },
+ "system": "drone system 5109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5246912015688,
+ 38.90923377336729
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5110",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5110 accessories"
+ }
+ },
+ "system": "drone system 5110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5560376957203,
+ 39.506805411486745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5111",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5111 accessories"
+ }
+ },
+ "system": "drone system 5111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53794700986715,
+ 38.487030007722886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5112",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5112 accessories"
+ }
+ },
+ "system": "drone system 5112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30981363497767,
+ 39.200505984989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5113",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5113 accessories"
+ }
+ },
+ "system": "drone system 5113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2099512547467,
+ 39.246316497838734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5114",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5114 accessories"
+ }
+ },
+ "system": "drone system 5114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27674029746971,
+ 38.58433095999885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5115",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5115 accessories"
+ }
+ },
+ "system": "drone system 5115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26181655131022,
+ 39.06885149705699
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5116",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5116 accessories"
+ }
+ },
+ "system": "drone system 5116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84217435847478,
+ 39.12571586936926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5117",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5117 accessories"
+ }
+ },
+ "system": "drone system 5117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20834252740393,
+ 39.350096036280604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5118",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5118 accessories"
+ }
+ },
+ "system": "drone system 5118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26265119551537,
+ 39.257383562328144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5119",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5119 accessories"
+ }
+ },
+ "system": "drone system 5119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4508607258546,
+ 38.69954015908246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5120",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5120 accessories"
+ }
+ },
+ "system": "drone system 5120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69243913103067,
+ 38.857026401268556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5121",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5121 accessories"
+ }
+ },
+ "system": "drone system 5121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31122517120922,
+ 38.583628426777295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5122",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5122 accessories"
+ }
+ },
+ "system": "drone system 5122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36063350178819,
+ 38.74426045083719
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5123",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5123 accessories"
+ }
+ },
+ "system": "drone system 5123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09964701467655,
+ 39.713892898175295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5124",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5124 accessories"
+ }
+ },
+ "system": "drone system 5124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51515536765457,
+ 39.27746135161096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5125",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5125 accessories"
+ }
+ },
+ "system": "drone system 5125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3005090760789,
+ 39.127374205226026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5126",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5126 accessories"
+ }
+ },
+ "system": "drone system 5126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44648766284924,
+ 38.38067400588348
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5127",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5127 accessories"
+ }
+ },
+ "system": "drone system 5127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77583678321126,
+ 38.98097390672402
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5128",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5128 accessories"
+ }
+ },
+ "system": "drone system 5128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86156861096967,
+ 38.425296300018104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5129",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5129 accessories"
+ }
+ },
+ "system": "drone system 5129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42371254974655,
+ 39.5019408118555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5130",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5130 accessories"
+ }
+ },
+ "system": "drone system 5130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17078142067692,
+ 39.05641332618594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5131",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5131 accessories"
+ }
+ },
+ "system": "drone system 5131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82588431129793,
+ 38.69244503112518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5132",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5132 accessories"
+ }
+ },
+ "system": "drone system 5132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30260380923733,
+ 38.562053122956584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5133",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5133 accessories"
+ }
+ },
+ "system": "drone system 5133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3896405980015,
+ 39.22888839793238
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5134",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5134 accessories"
+ }
+ },
+ "system": "drone system 5134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24245032649938,
+ 39.29849897031818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5135",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5135 accessories"
+ }
+ },
+ "system": "drone system 5135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.473940916263,
+ 38.32244244283894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5136",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5136 accessories"
+ }
+ },
+ "system": "drone system 5136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15378969939005,
+ 38.83122653625341
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5137",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5137 accessories"
+ }
+ },
+ "system": "drone system 5137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87283839625417,
+ 38.35236649533061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5138",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5138 accessories"
+ }
+ },
+ "system": "drone system 5138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22532681363933,
+ 38.560856692046826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5139",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5139 accessories"
+ }
+ },
+ "system": "drone system 5139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26831195764848,
+ 39.035468336733445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5140",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5140 accessories"
+ }
+ },
+ "system": "drone system 5140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47679362501148,
+ 38.60858054747672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5141",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5141 accessories"
+ }
+ },
+ "system": "drone system 5141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66828232321768,
+ 38.3356157465005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5142",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5142 accessories"
+ }
+ },
+ "system": "drone system 5142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33114788957475,
+ 38.78058581271241
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5143",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5143 accessories"
+ }
+ },
+ "system": "drone system 5143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58436556516823,
+ 39.66069658924314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5144",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5144 accessories"
+ }
+ },
+ "system": "drone system 5144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55905161604035,
+ 38.17955040677296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5145",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5145 accessories"
+ }
+ },
+ "system": "drone system 5145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96200048906614,
+ 39.51695781379769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5146",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5146 accessories"
+ }
+ },
+ "system": "drone system 5146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46100826216907,
+ 39.111430972938045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5147",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5147 accessories"
+ }
+ },
+ "system": "drone system 5147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8303701888641,
+ 39.21910766352562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5148",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5148 accessories"
+ }
+ },
+ "system": "drone system 5148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51936842569509,
+ 39.13844253888575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5149",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5149 accessories"
+ }
+ },
+ "system": "drone system 5149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27809090294072,
+ 38.40636819030078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5150",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5150 accessories"
+ }
+ },
+ "system": "drone system 5150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34271188173383,
+ 38.41888201000307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5151",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5151 accessories"
+ }
+ },
+ "system": "drone system 5151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88072927643822,
+ 39.06395373649532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5152",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5152 accessories"
+ }
+ },
+ "system": "drone system 5152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43303168231931,
+ 38.665526181658564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5153",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5153 accessories"
+ }
+ },
+ "system": "drone system 5153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8807747789826,
+ 39.32466075923465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5154",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5154 accessories"
+ }
+ },
+ "system": "drone system 5154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63944148941042,
+ 38.63139663591979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5155",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5155 accessories"
+ }
+ },
+ "system": "drone system 5155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3983890398563,
+ 38.94415523725869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5156",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5156 accessories"
+ }
+ },
+ "system": "drone system 5156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21629925513957,
+ 39.20346286340045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5157",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5157 accessories"
+ }
+ },
+ "system": "drone system 5157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80081748611029,
+ 38.37648360952958
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5158",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5158 accessories"
+ }
+ },
+ "system": "drone system 5158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38967990716284,
+ 39.22397503123703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5159",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5159 accessories"
+ }
+ },
+ "system": "drone system 5159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6875509154727,
+ 39.448021160852875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5160",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5160 accessories"
+ }
+ },
+ "system": "drone system 5160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0478029146173,
+ 38.45790664607299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5161",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5161 accessories"
+ }
+ },
+ "system": "drone system 5161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71482573851509,
+ 39.02580919250984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5162",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5162 accessories"
+ }
+ },
+ "system": "drone system 5162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94346588758275,
+ 39.27666115936879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5163",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5163 accessories"
+ }
+ },
+ "system": "drone system 5163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40071714149069,
+ 38.55346504070502
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5164",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5164 accessories"
+ }
+ },
+ "system": "drone system 5164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62582761323608,
+ 38.34124409720683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5165",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5165 accessories"
+ }
+ },
+ "system": "drone system 5165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13899778645035,
+ 38.02377641457683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5166",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5166 accessories"
+ }
+ },
+ "system": "drone system 5166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.911567875355,
+ 38.801924574302625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5167",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5167 accessories"
+ }
+ },
+ "system": "drone system 5167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03356938529654,
+ 38.17501023554573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5168",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5168 accessories"
+ }
+ },
+ "system": "drone system 5168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76841225570064,
+ 38.42179453938177
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5169",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5169 accessories"
+ }
+ },
+ "system": "drone system 5169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18469578191946,
+ 38.71592563802415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5170",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5170 accessories"
+ }
+ },
+ "system": "drone system 5170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74963414062897,
+ 39.29285108532012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5171",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5171 accessories"
+ }
+ },
+ "system": "drone system 5171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84834342063715,
+ 38.52788670847626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5172",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5172 accessories"
+ }
+ },
+ "system": "drone system 5172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8758005069905,
+ 38.18479255312646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5173",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5173 accessories"
+ }
+ },
+ "system": "drone system 5173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50296378811335,
+ 38.85430542969447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5174",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5174 accessories"
+ }
+ },
+ "system": "drone system 5174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67878720342065,
+ 39.26093720755746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5175",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5175 accessories"
+ }
+ },
+ "system": "drone system 5175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23851830455956,
+ 38.84314751340495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5176",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5176 accessories"
+ }
+ },
+ "system": "drone system 5176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91888619435055,
+ 38.71008510089392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5177",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5177 accessories"
+ }
+ },
+ "system": "drone system 5177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61354561452826,
+ 38.773309783694195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5178",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5178 accessories"
+ }
+ },
+ "system": "drone system 5178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20330594921776,
+ 39.088914136705085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5179",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5179 accessories"
+ }
+ },
+ "system": "drone system 5179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.171580541471,
+ 38.963334771172036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5180",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5180 accessories"
+ }
+ },
+ "system": "drone system 5180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56330966142248,
+ 39.29764192998077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5181",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5181 accessories"
+ }
+ },
+ "system": "drone system 5181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.14469695934847,
+ 38.886654139667606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5182",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5182 accessories"
+ }
+ },
+ "system": "drone system 5182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39770770219604,
+ 39.219099131269715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5183",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5183 accessories"
+ }
+ },
+ "system": "drone system 5183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55936461109643,
+ 38.43536125190122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5184",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5184 accessories"
+ }
+ },
+ "system": "drone system 5184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63628958320321,
+ 39.385490128809465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5185",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5185 accessories"
+ }
+ },
+ "system": "drone system 5185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06396454568424,
+ 39.74524917764215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5186",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5186 accessories"
+ }
+ },
+ "system": "drone system 5186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52895474053845,
+ 38.8208133806261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5187",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5187 accessories"
+ }
+ },
+ "system": "drone system 5187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60683401616947,
+ 39.43640352512125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5188",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5188 accessories"
+ }
+ },
+ "system": "drone system 5188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06899602228206,
+ 38.66884376051108
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5189",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5189 accessories"
+ }
+ },
+ "system": "drone system 5189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35311675984066,
+ 38.38450310290624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5190",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5190 accessories"
+ }
+ },
+ "system": "drone system 5190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25636699273531,
+ 38.44960995486565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5191",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5191 accessories"
+ }
+ },
+ "system": "drone system 5191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24204567099046,
+ 38.55261584280728
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5192",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5192 accessories"
+ }
+ },
+ "system": "drone system 5192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06128035299633,
+ 38.348759215773775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5193",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5193 accessories"
+ }
+ },
+ "system": "drone system 5193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47191600707357,
+ 39.651334770196115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5194",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5194 accessories"
+ }
+ },
+ "system": "drone system 5194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15687019321639,
+ 38.59761566264402
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5195",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5195 accessories"
+ }
+ },
+ "system": "drone system 5195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70740523164376,
+ 39.486738175956354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5196",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5196 accessories"
+ }
+ },
+ "system": "drone system 5196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36968671414527,
+ 38.40636218256207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5197",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5197 accessories"
+ }
+ },
+ "system": "drone system 5197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8335857384567,
+ 38.81470405715464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5198",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5198 accessories"
+ }
+ },
+ "system": "drone system 5198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81846136739757,
+ 38.126749489359376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5199",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5199 accessories"
+ }
+ },
+ "system": "drone system 5199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21588514895862,
+ 38.77102992758427
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5200",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5200 accessories"
+ }
+ },
+ "system": "drone system 5200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63281220914213,
+ 38.48333512721782
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5201",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5201 accessories"
+ }
+ },
+ "system": "drone system 5201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61583144606539,
+ 38.962056155745955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5202",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5202 accessories"
+ }
+ },
+ "system": "drone system 5202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19623182865467,
+ 38.955744959994156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5203",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5203 accessories"
+ }
+ },
+ "system": "drone system 5203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17071369674835,
+ 39.411281358606594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5204",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5204 accessories"
+ }
+ },
+ "system": "drone system 5204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62971530267815,
+ 39.08855214185626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5205",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5205 accessories"
+ }
+ },
+ "system": "drone system 5205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78763784793557,
+ 39.07682821827366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5206",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5206 accessories"
+ }
+ },
+ "system": "drone system 5206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.770538896554,
+ 39.49707464408545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5207",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5207 accessories"
+ }
+ },
+ "system": "drone system 5207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68006370916564,
+ 38.47174271721911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5208",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5208 accessories"
+ }
+ },
+ "system": "drone system 5208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38895723140224,
+ 39.46557768826076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5209",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5209 accessories"
+ }
+ },
+ "system": "drone system 5209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46039223874601,
+ 38.15101962910969
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5210",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5210 accessories"
+ }
+ },
+ "system": "drone system 5210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2745435707824,
+ 39.53348101496143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5211",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5211 accessories"
+ }
+ },
+ "system": "drone system 5211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37233217888851,
+ 39.667454855416636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5212",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5212 accessories"
+ }
+ },
+ "system": "drone system 5212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28757305591962,
+ 39.09245552671489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5213",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5213 accessories"
+ }
+ },
+ "system": "drone system 5213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50143533512689,
+ 38.56206782072888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5214",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5214 accessories"
+ }
+ },
+ "system": "drone system 5214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0980925883647,
+ 38.38951087273296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5215 accessories"
+ }
+ },
+ "system": "drone system 5215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46680994514186,
+ 38.43748530654688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5216",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5216 accessories"
+ }
+ },
+ "system": "drone system 5216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14149244310399,
+ 38.40713857477807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5217",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5217 accessories"
+ }
+ },
+ "system": "drone system 5217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70418162765478,
+ 39.62013026250423
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5218",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5218 accessories"
+ }
+ },
+ "system": "drone system 5218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69818533820155,
+ 39.55458069447363
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5219",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5219 accessories"
+ }
+ },
+ "system": "drone system 5219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64207249741024,
+ 39.0125514316207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5220",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5220 accessories"
+ }
+ },
+ "system": "drone system 5220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17767352224622,
+ 38.04777186885707
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5221",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5221 accessories"
+ }
+ },
+ "system": "drone system 5221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43042835282547,
+ 39.58205984227103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5222",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5222 accessories"
+ }
+ },
+ "system": "drone system 5222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90550518167703,
+ 38.8251033882197
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5223",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5223 accessories"
+ }
+ },
+ "system": "drone system 5223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81293004241803,
+ 39.159366711639834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5224",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5224 accessories"
+ }
+ },
+ "system": "drone system 5224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65378682890123,
+ 38.31155653942852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5225 accessories"
+ }
+ },
+ "system": "drone system 5225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70325674652655,
+ 38.98165511650602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5226",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5226 accessories"
+ }
+ },
+ "system": "drone system 5226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4573607974933,
+ 38.88883885289493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5227",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5227 accessories"
+ }
+ },
+ "system": "drone system 5227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14680500331134,
+ 39.571070954692075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5228",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5228 accessories"
+ }
+ },
+ "system": "drone system 5228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5480498256617,
+ 39.51006147606084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5229",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5229 accessories"
+ }
+ },
+ "system": "drone system 5229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71617327220329,
+ 38.97980698372699
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5230",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5230 accessories"
+ }
+ },
+ "system": "drone system 5230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53387417424561,
+ 39.56516254125301
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5231",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5231 accessories"
+ }
+ },
+ "system": "drone system 5231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13682342838341,
+ 38.98519972304215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5232",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5232 accessories"
+ }
+ },
+ "system": "drone system 5232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.218406552503,
+ 38.984568055621956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5233",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5233 accessories"
+ }
+ },
+ "system": "drone system 5233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90419316270427,
+ 39.46892910318311
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5234",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5234 accessories"
+ }
+ },
+ "system": "drone system 5234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2019753607923,
+ 39.56991019824697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5235",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5235 accessories"
+ }
+ },
+ "system": "drone system 5235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31684928305408,
+ 39.417658402510234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5236",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5236 accessories"
+ }
+ },
+ "system": "drone system 5236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28736079279312,
+ 39.262860758210785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5237",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5237 accessories"
+ }
+ },
+ "system": "drone system 5237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17362013314074,
+ 38.872803193888224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5238",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5238 accessories"
+ }
+ },
+ "system": "drone system 5238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40100705342462,
+ 38.663899021814274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5239",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5239 accessories"
+ }
+ },
+ "system": "drone system 5239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30208295938019,
+ 38.72544432289664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5240",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5240 accessories"
+ }
+ },
+ "system": "drone system 5240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15478949725102,
+ 38.96520084936469
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5241",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5241 accessories"
+ }
+ },
+ "system": "drone system 5241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56116832834414,
+ 39.50978614102092
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5242",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5242 accessories"
+ }
+ },
+ "system": "drone system 5242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37325520894922,
+ 39.50328844791522
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5243",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5243 accessories"
+ }
+ },
+ "system": "drone system 5243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13914200868955,
+ 38.23728071000806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5244",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5244 accessories"
+ }
+ },
+ "system": "drone system 5244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66566241280948,
+ 38.19489761859086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5245",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5245 accessories"
+ }
+ },
+ "system": "drone system 5245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06869711160722,
+ 39.31594036998109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5246",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5246 accessories"
+ }
+ },
+ "system": "drone system 5246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57241318238353,
+ 38.95955529990747
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5247",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5247 accessories"
+ }
+ },
+ "system": "drone system 5247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92136964444488,
+ 39.248600285111465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5248",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5248 accessories"
+ }
+ },
+ "system": "drone system 5248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63644882714772,
+ 38.12066737688469
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5249",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5249 accessories"
+ }
+ },
+ "system": "drone system 5249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16723638288038,
+ 38.730981977084326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5250",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5250 accessories"
+ }
+ },
+ "system": "drone system 5250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93318849110851,
+ 39.16234110456016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5251",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5251 accessories"
+ }
+ },
+ "system": "drone system 5251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67087614519802,
+ 39.201773679237625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5252",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5252 accessories"
+ }
+ },
+ "system": "drone system 5252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96477478029983,
+ 38.38134665883934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5253",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5253 accessories"
+ }
+ },
+ "system": "drone system 5253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64620716562969,
+ 38.39855461180471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5254",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5254 accessories"
+ }
+ },
+ "system": "drone system 5254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48253473365125,
+ 39.476071989692564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5255",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5255 accessories"
+ }
+ },
+ "system": "drone system 5255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27747359438827,
+ 39.645437094093545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5256",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5256 accessories"
+ }
+ },
+ "system": "drone system 5256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76896891845243,
+ 39.557032929610386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5257",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5257 accessories"
+ }
+ },
+ "system": "drone system 5257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26184247040288,
+ 38.22992154666589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5258",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5258 accessories"
+ }
+ },
+ "system": "drone system 5258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25173610220017,
+ 38.70464819563892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5259",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5259 accessories"
+ }
+ },
+ "system": "drone system 5259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18191938501745,
+ 38.19935285160484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5260",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5260 accessories"
+ }
+ },
+ "system": "drone system 5260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8718660065182,
+ 39.233149174899374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5261",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5261 accessories"
+ }
+ },
+ "system": "drone system 5261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73694378691614,
+ 38.45118162367868
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5262",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5262 accessories"
+ }
+ },
+ "system": "drone system 5262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28940677869176,
+ 39.46674190990574
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5263",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5263 accessories"
+ }
+ },
+ "system": "drone system 5263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6568580713488,
+ 39.449065835235714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5264",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5264 accessories"
+ }
+ },
+ "system": "drone system 5264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35822175786373,
+ 39.09302386489341
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5265",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5265 accessories"
+ }
+ },
+ "system": "drone system 5265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41029133256133,
+ 38.28004282672677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5266",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5266 accessories"
+ }
+ },
+ "system": "drone system 5266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59338744916354,
+ 39.3481424526319
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5267",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5267 accessories"
+ }
+ },
+ "system": "drone system 5267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89407470298765,
+ 38.77868185933675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5268",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5268 accessories"
+ }
+ },
+ "system": "drone system 5268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35562443493549,
+ 39.279444183498825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5269",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5269 accessories"
+ }
+ },
+ "system": "drone system 5269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91126336576536,
+ 39.76690380843736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5270",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5270 accessories"
+ }
+ },
+ "system": "drone system 5270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72148319187066,
+ 39.22416550098939
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5271",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5271 accessories"
+ }
+ },
+ "system": "drone system 5271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94351104653508,
+ 39.591023670322585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5272",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5272 accessories"
+ }
+ },
+ "system": "drone system 5272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89277267605331,
+ 38.840349854328664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5273",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5273 accessories"
+ }
+ },
+ "system": "drone system 5273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43209851726017,
+ 38.966728270008154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5274",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5274 accessories"
+ }
+ },
+ "system": "drone system 5274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21248343343551,
+ 38.16908503479004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5275",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5275 accessories"
+ }
+ },
+ "system": "drone system 5275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8465849470032,
+ 39.49068507064743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5276",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5276 accessories"
+ }
+ },
+ "system": "drone system 5276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31772274077888,
+ 38.211659796389654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5277",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5277 accessories"
+ }
+ },
+ "system": "drone system 5277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54167949603523,
+ 38.76899485180635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5278",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5278 accessories"
+ }
+ },
+ "system": "drone system 5278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84244943429175,
+ 38.73848595424128
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5279",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5279 accessories"
+ }
+ },
+ "system": "drone system 5279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3833956448838,
+ 38.69738234712743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5280",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5280 accessories"
+ }
+ },
+ "system": "drone system 5280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44176211920919,
+ 38.66022192225583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5281",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5281 accessories"
+ }
+ },
+ "system": "drone system 5281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22538839587673,
+ 38.73916709452781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5282",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5282 accessories"
+ }
+ },
+ "system": "drone system 5282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52819867728503,
+ 38.97194082283107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5283",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5283 accessories"
+ }
+ },
+ "system": "drone system 5283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86578588956499,
+ 39.34162243597216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5284",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5284 accessories"
+ }
+ },
+ "system": "drone system 5284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4925939406339,
+ 38.60096426914744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5285",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5285 accessories"
+ }
+ },
+ "system": "drone system 5285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78226483499031,
+ 39.2466872904767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5286",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5286 accessories"
+ }
+ },
+ "system": "drone system 5286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17578956668277,
+ 38.94856890898058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5287",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5287 accessories"
+ }
+ },
+ "system": "drone system 5287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46805195750281,
+ 39.58085079417312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5288",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5288 accessories"
+ }
+ },
+ "system": "drone system 5288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70697681517288,
+ 38.64724694219904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5289",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5289 accessories"
+ }
+ },
+ "system": "drone system 5289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04685771212836,
+ 38.01698239131082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5290",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5290 accessories"
+ }
+ },
+ "system": "drone system 5290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5097460087801,
+ 39.30517510787813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5291",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5291 accessories"
+ }
+ },
+ "system": "drone system 5291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24805438467534,
+ 38.87221159348655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5292",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5292 accessories"
+ }
+ },
+ "system": "drone system 5292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77088367204573,
+ 38.775022232033855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5293",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5293 accessories"
+ }
+ },
+ "system": "drone system 5293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28711791210092,
+ 39.37661039968739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5294",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5294 accessories"
+ }
+ },
+ "system": "drone system 5294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23771890848772,
+ 38.311629682052136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5295",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5295 accessories"
+ }
+ },
+ "system": "drone system 5295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46179838815576,
+ 39.27494693192184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5296",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5296 accessories"
+ }
+ },
+ "system": "drone system 5296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76939008308909,
+ 38.392987799048484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5297",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5297 accessories"
+ }
+ },
+ "system": "drone system 5297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9973403866211,
+ 39.69887179566981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5298",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5298 accessories"
+ }
+ },
+ "system": "drone system 5298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37747908307838,
+ 38.63863662223144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5299",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5299 accessories"
+ }
+ },
+ "system": "drone system 5299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47923665589941,
+ 38.814783049680095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5300",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5300 accessories"
+ }
+ },
+ "system": "drone system 5300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48425404348075,
+ 39.27833939939122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5301",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5301 accessories"
+ }
+ },
+ "system": "drone system 5301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7855632976313,
+ 38.6195254284261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5302",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5302 accessories"
+ }
+ },
+ "system": "drone system 5302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84724357760778,
+ 39.41189740001271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5303",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5303 accessories"
+ }
+ },
+ "system": "drone system 5303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6330826893691,
+ 39.02534857481829
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5304",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5304 accessories"
+ }
+ },
+ "system": "drone system 5304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71564174576838,
+ 38.49017922837709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5305",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5305 accessories"
+ }
+ },
+ "system": "drone system 5305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20119844588902,
+ 38.86062960809049
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5306",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5306 accessories"
+ }
+ },
+ "system": "drone system 5306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67380498116556,
+ 38.144755415255716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5307",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5307 accessories"
+ }
+ },
+ "system": "drone system 5307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40632666936715,
+ 39.59673743638135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5308",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5308 accessories"
+ }
+ },
+ "system": "drone system 5308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79968842742439,
+ 39.50182994903969
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5309",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5309 accessories"
+ }
+ },
+ "system": "drone system 5309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42065816935087,
+ 38.95718277730061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5310",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5310 accessories"
+ }
+ },
+ "system": "drone system 5310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12149260415455,
+ 38.32734246218686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5311",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5311 accessories"
+ }
+ },
+ "system": "drone system 5311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50971512357533,
+ 39.04132116099366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5312",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5312 accessories"
+ }
+ },
+ "system": "drone system 5312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16117028430996,
+ 39.18644714181806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5313 accessories"
+ }
+ },
+ "system": "drone system 5313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6076419646747,
+ 39.64054195260751
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5314",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5314 accessories"
+ }
+ },
+ "system": "drone system 5314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5980045877115,
+ 39.56047517935899
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5315",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5315 accessories"
+ }
+ },
+ "system": "drone system 5315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33451539627504,
+ 38.89572305340975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5316",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5316 accessories"
+ }
+ },
+ "system": "drone system 5316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61534190492613,
+ 39.46672060241326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5317",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5317 accessories"
+ }
+ },
+ "system": "drone system 5317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9105689262236,
+ 39.383637705237184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5318",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5318 accessories"
+ }
+ },
+ "system": "drone system 5318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90338136796377,
+ 39.08158088875183
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5319",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5319 accessories"
+ }
+ },
+ "system": "drone system 5319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33841263339623,
+ 39.22876355109143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5320",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5320 accessories"
+ }
+ },
+ "system": "drone system 5320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17395186086054,
+ 38.9327047204859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5321",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5321 accessories"
+ }
+ },
+ "system": "drone system 5321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34029708354852,
+ 38.9779111100781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5322",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5322 accessories"
+ }
+ },
+ "system": "drone system 5322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14865050500836,
+ 38.74761668824398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5323",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5323 accessories"
+ }
+ },
+ "system": "drone system 5323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2229599325803,
+ 39.09669471274521
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5324",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5324 accessories"
+ }
+ },
+ "system": "drone system 5324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90604476997397,
+ 39.01308075994017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5325",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5325 accessories"
+ }
+ },
+ "system": "drone system 5325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11397534122281,
+ 38.306567430918726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5326",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5326 accessories"
+ }
+ },
+ "system": "drone system 5326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51805963404671,
+ 39.473172466294734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5327",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5327 accessories"
+ }
+ },
+ "system": "drone system 5327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45059452124502,
+ 39.53965809752215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5328",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5328 accessories"
+ }
+ },
+ "system": "drone system 5328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10739099890962,
+ 38.7176576001491
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5329",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5329 accessories"
+ }
+ },
+ "system": "drone system 5329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6222691485605,
+ 38.92678558237036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5330",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5330 accessories"
+ }
+ },
+ "system": "drone system 5330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34392870809869,
+ 39.45556728596294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5331",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5331 accessories"
+ }
+ },
+ "system": "drone system 5331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25492961244049,
+ 39.237412183436376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5332",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5332 accessories"
+ }
+ },
+ "system": "drone system 5332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02877956721969,
+ 39.02813412821056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5333",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5333 accessories"
+ }
+ },
+ "system": "drone system 5333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90137068829374,
+ 38.944823768703856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5334",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5334 accessories"
+ }
+ },
+ "system": "drone system 5334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73082674865772,
+ 38.54357641887039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5335",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5335 accessories"
+ }
+ },
+ "system": "drone system 5335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34618183993439,
+ 39.600925117819955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5336",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5336 accessories"
+ }
+ },
+ "system": "drone system 5336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06900115746858,
+ 38.65144855988203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5337",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5337 accessories"
+ }
+ },
+ "system": "drone system 5337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7978865335802,
+ 39.04583440788344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5338",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5338 accessories"
+ }
+ },
+ "system": "drone system 5338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44512008475286,
+ 38.28864541865631
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5339",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5339 accessories"
+ }
+ },
+ "system": "drone system 5339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75779124282899,
+ 39.40904078034021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5340",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5340 accessories"
+ }
+ },
+ "system": "drone system 5340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3396905326419,
+ 38.7439660358946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5341",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5341 accessories"
+ }
+ },
+ "system": "drone system 5341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85782038723947,
+ 38.23000938370155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5342",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5342 accessories"
+ }
+ },
+ "system": "drone system 5342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95105102337094,
+ 38.72629361650814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5343",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5343 accessories"
+ }
+ },
+ "system": "drone system 5343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84629729090608,
+ 39.14864403984885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5344",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5344 accessories"
+ }
+ },
+ "system": "drone system 5344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22486829225586,
+ 39.55647090397016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5345",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5345 accessories"
+ }
+ },
+ "system": "drone system 5345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91377534121102,
+ 38.27049417583987
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5346",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5346 accessories"
+ }
+ },
+ "system": "drone system 5346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33613980690495,
+ 39.097112644939074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5347",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5347 accessories"
+ }
+ },
+ "system": "drone system 5347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10661553032594,
+ 39.26925847273932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5348",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5348 accessories"
+ }
+ },
+ "system": "drone system 5348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87186831503425,
+ 38.93479496079424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5349",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5349 accessories"
+ }
+ },
+ "system": "drone system 5349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48252098537073,
+ 39.56121547948411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5350",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5350 accessories"
+ }
+ },
+ "system": "drone system 5350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71275306378804,
+ 39.66643120131173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5351",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5351 accessories"
+ }
+ },
+ "system": "drone system 5351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.412253381072,
+ 39.35522641778078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5352",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5352 accessories"
+ }
+ },
+ "system": "drone system 5352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63379592535331,
+ 38.67193081538757
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5353",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5353 accessories"
+ }
+ },
+ "system": "drone system 5353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85943022134765,
+ 38.88948459454954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5354",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5354 accessories"
+ }
+ },
+ "system": "drone system 5354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43448999192425,
+ 38.879445798343866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5355",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5355 accessories"
+ }
+ },
+ "system": "drone system 5355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72619038397941,
+ 39.20918965310116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5356",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5356 accessories"
+ }
+ },
+ "system": "drone system 5356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06880180851994,
+ 39.61131197118551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5357",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5357 accessories"
+ }
+ },
+ "system": "drone system 5357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49867454524431,
+ 39.030874133156885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5358 accessories"
+ }
+ },
+ "system": "drone system 5358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41278267271464,
+ 39.11165886727686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5359",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5359 accessories"
+ }
+ },
+ "system": "drone system 5359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56753509544106,
+ 39.348514186462076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5360",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5360 accessories"
+ }
+ },
+ "system": "drone system 5360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83512475666865,
+ 38.50650840348134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5361",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5361 accessories"
+ }
+ },
+ "system": "drone system 5361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5067870378897,
+ 38.19570806077381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5362",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5362 accessories"
+ }
+ },
+ "system": "drone system 5362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68408940734454,
+ 39.16324108141336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5363",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5363 accessories"
+ }
+ },
+ "system": "drone system 5363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95242062426412,
+ 38.43929930744573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5364",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5364 accessories"
+ }
+ },
+ "system": "drone system 5364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80411367873258,
+ 38.94265431988611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5365",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5365 accessories"
+ }
+ },
+ "system": "drone system 5365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80938270900704,
+ 39.715085027504244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5366",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5366 accessories"
+ }
+ },
+ "system": "drone system 5366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88592538218373,
+ 39.59295063825822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5367",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5367 accessories"
+ }
+ },
+ "system": "drone system 5367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28489506420486,
+ 38.65189476120994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5368",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5368 accessories"
+ }
+ },
+ "system": "drone system 5368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29193820501203,
+ 38.64930766227572
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5369",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5369 accessories"
+ }
+ },
+ "system": "drone system 5369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10169482038638,
+ 39.554662345269186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5370 accessories"
+ }
+ },
+ "system": "drone system 5370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6768183552185,
+ 39.02418517748528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5371",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5371 accessories"
+ }
+ },
+ "system": "drone system 5371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.464886027526,
+ 38.90803841759836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5372",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5372 accessories"
+ }
+ },
+ "system": "drone system 5372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37967461759074,
+ 38.99805533923407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5373",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5373 accessories"
+ }
+ },
+ "system": "drone system 5373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11889876742916,
+ 38.06459627100814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5374",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5374 accessories"
+ }
+ },
+ "system": "drone system 5374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04579726416395,
+ 38.22933200728887
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5375",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5375 accessories"
+ }
+ },
+ "system": "drone system 5375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47195780076613,
+ 38.891148896668
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5376",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5376 accessories"
+ }
+ },
+ "system": "drone system 5376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21165943623798,
+ 39.3327830429223
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5377",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5377 accessories"
+ }
+ },
+ "system": "drone system 5377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0330386837025,
+ 39.522128933271034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5378",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5378 accessories"
+ }
+ },
+ "system": "drone system 5378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62133558096693,
+ 38.90031403959164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5379",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5379 accessories"
+ }
+ },
+ "system": "drone system 5379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22966309555059,
+ 38.50581183414299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5380",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5380 accessories"
+ }
+ },
+ "system": "drone system 5380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77355653665529,
+ 39.32349516931896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5381",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5381 accessories"
+ }
+ },
+ "system": "drone system 5381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37997275703216,
+ 38.120008633459136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5382",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5382 accessories"
+ }
+ },
+ "system": "drone system 5382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2816315189963,
+ 39.22175497313451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5383",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5383 accessories"
+ }
+ },
+ "system": "drone system 5383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57847460941129,
+ 39.061688839518986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5384",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5384 accessories"
+ }
+ },
+ "system": "drone system 5384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63557479322199,
+ 39.28355734171787
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5385",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5385 accessories"
+ }
+ },
+ "system": "drone system 5385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61273250970211,
+ 38.12489585721062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5386",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5386 accessories"
+ }
+ },
+ "system": "drone system 5386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06241979697774,
+ 39.00583533847206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5387",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5387 accessories"
+ }
+ },
+ "system": "drone system 5387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38928665270991,
+ 38.67027843417889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5388",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5388 accessories"
+ }
+ },
+ "system": "drone system 5388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97047216832965,
+ 39.326493586846105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5389",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5389 accessories"
+ }
+ },
+ "system": "drone system 5389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41385652821383,
+ 38.3405742294907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5390",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5390 accessories"
+ }
+ },
+ "system": "drone system 5390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51267551680004,
+ 38.35377293414624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5391",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5391 accessories"
+ }
+ },
+ "system": "drone system 5391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17409220501816,
+ 38.562302008912205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5392",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5392 accessories"
+ }
+ },
+ "system": "drone system 5392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54971642675314,
+ 39.05634305389798
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5393",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5393 accessories"
+ }
+ },
+ "system": "drone system 5393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87040153471578,
+ 39.22101023145448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5394",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5394 accessories"
+ }
+ },
+ "system": "drone system 5394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36224575852489,
+ 38.169746256593484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5395",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5395 accessories"
+ }
+ },
+ "system": "drone system 5395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80400317933218,
+ 39.38441336846678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5396",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5396 accessories"
+ }
+ },
+ "system": "drone system 5396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35482608432038,
+ 39.64765862670535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5397",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5397 accessories"
+ }
+ },
+ "system": "drone system 5397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.343799169898,
+ 38.41113113055718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5398",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5398 accessories"
+ }
+ },
+ "system": "drone system 5398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33666293757922,
+ 38.07743352265829
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5399",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5399 accessories"
+ }
+ },
+ "system": "drone system 5399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84415947504003,
+ 39.73913217168187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5400",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5400 accessories"
+ }
+ },
+ "system": "drone system 5400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22190311746692,
+ 38.61554286045411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5401",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5401 accessories"
+ }
+ },
+ "system": "drone system 5401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35753924084746,
+ 39.09629187493088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5402",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5402 accessories"
+ }
+ },
+ "system": "drone system 5402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91458265312389,
+ 38.638581110367646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5403",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5403 accessories"
+ }
+ },
+ "system": "drone system 5403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04857869468091,
+ 39.03018109832953
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5404",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5404 accessories"
+ }
+ },
+ "system": "drone system 5404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29993399300308,
+ 38.557442322677105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5405",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5405 accessories"
+ }
+ },
+ "system": "drone system 5405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9623390307292,
+ 38.49944928664978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5406",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5406 accessories"
+ }
+ },
+ "system": "drone system 5406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2907505472034,
+ 38.499693775827396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5407",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5407 accessories"
+ }
+ },
+ "system": "drone system 5407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22840069874914,
+ 38.798074380409346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5408",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5408 accessories"
+ }
+ },
+ "system": "drone system 5408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12337037702959,
+ 39.78705285047639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5409",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5409 accessories"
+ }
+ },
+ "system": "drone system 5409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26496964650842,
+ 39.1955129188977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5410",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5410 accessories"
+ }
+ },
+ "system": "drone system 5410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82374033400463,
+ 39.567903359321136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5411",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5411 accessories"
+ }
+ },
+ "system": "drone system 5411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12127994179154,
+ 38.87354195438534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5412",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5412 accessories"
+ }
+ },
+ "system": "drone system 5412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70811942045607,
+ 38.56175754336141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5413",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5413 accessories"
+ }
+ },
+ "system": "drone system 5413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15209748910593,
+ 39.5261511282591
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5414",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5414 accessories"
+ }
+ },
+ "system": "drone system 5414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53858686690154,
+ 38.94076680199242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5415",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5415 accessories"
+ }
+ },
+ "system": "drone system 5415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85643149446909,
+ 38.96616466346689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5416",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5416 accessories"
+ }
+ },
+ "system": "drone system 5416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3039189817146,
+ 38.632913677670736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5417",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5417 accessories"
+ }
+ },
+ "system": "drone system 5417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21792446875509,
+ 38.428771221685665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5418",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5418 accessories"
+ }
+ },
+ "system": "drone system 5418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92315650067563,
+ 39.589039988651116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5419",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5419 accessories"
+ }
+ },
+ "system": "drone system 5419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44697029632263,
+ 38.52467222184618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5420",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5420 accessories"
+ }
+ },
+ "system": "drone system 5420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49026075386942,
+ 38.937904100739786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5421",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5421 accessories"
+ }
+ },
+ "system": "drone system 5421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60989719793037,
+ 38.899105500182024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5422",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5422 accessories"
+ }
+ },
+ "system": "drone system 5422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52140771580949,
+ 38.4918305811613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5423",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5423 accessories"
+ }
+ },
+ "system": "drone system 5423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2022476498136,
+ 39.13299120045988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5424",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5424 accessories"
+ }
+ },
+ "system": "drone system 5424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85606934228868,
+ 39.1365758920065
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5425",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5425 accessories"
+ }
+ },
+ "system": "drone system 5425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79779429203423,
+ 39.006276540318254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5426",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5426 accessories"
+ }
+ },
+ "system": "drone system 5426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28685833412374,
+ 38.484997573900465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5427",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5427 accessories"
+ }
+ },
+ "system": "drone system 5427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18493436609648,
+ 39.230416661910844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5428",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5428 accessories"
+ }
+ },
+ "system": "drone system 5428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0062481367564,
+ 39.60667938230804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5429",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5429 accessories"
+ }
+ },
+ "system": "drone system 5429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26661389159334,
+ 38.82378097982057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5430",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5430 accessories"
+ }
+ },
+ "system": "drone system 5430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15170439735867,
+ 38.96823949320891
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5431",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5431 accessories"
+ }
+ },
+ "system": "drone system 5431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6042108061342,
+ 38.409030767573256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5432",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5432 accessories"
+ }
+ },
+ "system": "drone system 5432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24889615642759,
+ 39.27571900884227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5433",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5433 accessories"
+ }
+ },
+ "system": "drone system 5433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18368080107615,
+ 39.74890373372922
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5434",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5434 accessories"
+ }
+ },
+ "system": "drone system 5434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18027573116359,
+ 38.27975961156188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5435",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5435 accessories"
+ }
+ },
+ "system": "drone system 5435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3682431481921,
+ 39.73796875556522
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5436",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5436 accessories"
+ }
+ },
+ "system": "drone system 5436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10577511417846,
+ 39.54852775560821
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5437",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5437 accessories"
+ }
+ },
+ "system": "drone system 5437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67999260362649,
+ 38.60250734777374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5438",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5438 accessories"
+ }
+ },
+ "system": "drone system 5438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57754376189634,
+ 39.62469680869486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5439",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5439 accessories"
+ }
+ },
+ "system": "drone system 5439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38404445635481,
+ 38.11815000268946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5440",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5440 accessories"
+ }
+ },
+ "system": "drone system 5440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62436936731456,
+ 38.27233420831089
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5441",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5441 accessories"
+ }
+ },
+ "system": "drone system 5441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05886271489256,
+ 39.264120295216216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5442",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5442 accessories"
+ }
+ },
+ "system": "drone system 5442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53195628738908,
+ 38.170787001787005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5443",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5443 accessories"
+ }
+ },
+ "system": "drone system 5443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66142801443885,
+ 39.29026893576358
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5444",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5444 accessories"
+ }
+ },
+ "system": "drone system 5444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86787701185558,
+ 38.61533726147428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5445",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5445 accessories"
+ }
+ },
+ "system": "drone system 5445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97394161759587,
+ 39.618203535352876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5446",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5446 accessories"
+ }
+ },
+ "system": "drone system 5446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19364044241595,
+ 38.18755467847706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5447",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5447 accessories"
+ }
+ },
+ "system": "drone system 5447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51712485953638,
+ 38.98515628040807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5448",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5448 accessories"
+ }
+ },
+ "system": "drone system 5448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21664712318743,
+ 39.25418030417435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5449",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5449 accessories"
+ }
+ },
+ "system": "drone system 5449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11385356475824,
+ 38.98121462987688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5450",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5450 accessories"
+ }
+ },
+ "system": "drone system 5450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18866096167788,
+ 38.82819472004784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5451",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5451 accessories"
+ }
+ },
+ "system": "drone system 5451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18688477220134,
+ 39.16808745252435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5452",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5452 accessories"
+ }
+ },
+ "system": "drone system 5452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67510502570403,
+ 38.15881547411257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5453",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5453 accessories"
+ }
+ },
+ "system": "drone system 5453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51067995768933,
+ 39.191002080405106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5454",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5454 accessories"
+ }
+ },
+ "system": "drone system 5454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71815771808532,
+ 39.16555419500967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5455",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5455 accessories"
+ }
+ },
+ "system": "drone system 5455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60955773701284,
+ 39.10295972528207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5456",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5456 accessories"
+ }
+ },
+ "system": "drone system 5456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86722971621516,
+ 38.97885382923888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5457",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5457 accessories"
+ }
+ },
+ "system": "drone system 5457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29503082869276,
+ 38.56380636826904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5458",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5458 accessories"
+ }
+ },
+ "system": "drone system 5458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27890407778817,
+ 38.62873634177683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5459",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5459 accessories"
+ }
+ },
+ "system": "drone system 5459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94386809919513,
+ 38.26034107835366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5460",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5460 accessories"
+ }
+ },
+ "system": "drone system 5460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81778071961992,
+ 38.78732501138882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5461",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5461 accessories"
+ }
+ },
+ "system": "drone system 5461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66344160154237,
+ 39.69346330195029
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5462",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5462 accessories"
+ }
+ },
+ "system": "drone system 5462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87325568739443,
+ 38.512356855890545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5463",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5463 accessories"
+ }
+ },
+ "system": "drone system 5463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04906116598214,
+ 38.40910530870631
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5464",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5464 accessories"
+ }
+ },
+ "system": "drone system 5464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79291004386165,
+ 38.95717443758458
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5465",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5465 accessories"
+ }
+ },
+ "system": "drone system 5465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38849330767397,
+ 38.800244184027456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5466",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5466 accessories"
+ }
+ },
+ "system": "drone system 5466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21517291636592,
+ 39.10277294936621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5467",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5467 accessories"
+ }
+ },
+ "system": "drone system 5467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50564094990779,
+ 38.28955240112701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5468",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5468 accessories"
+ }
+ },
+ "system": "drone system 5468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34312096226913,
+ 39.69330973988078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5469",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5469 accessories"
+ }
+ },
+ "system": "drone system 5469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61239908320954,
+ 38.51195662542845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5470",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5470 accessories"
+ }
+ },
+ "system": "drone system 5470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5343896818666,
+ 38.49731191646584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5471",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5471 accessories"
+ }
+ },
+ "system": "drone system 5471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12562430068516,
+ 38.351228139104414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5472",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5472 accessories"
+ }
+ },
+ "system": "drone system 5472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3158704334539,
+ 38.198589122382494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5473",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5473 accessories"
+ }
+ },
+ "system": "drone system 5473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91118117398307,
+ 39.255408731665746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5474",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5474 accessories"
+ }
+ },
+ "system": "drone system 5474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26348862884694,
+ 38.69408826521872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5475",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5475 accessories"
+ }
+ },
+ "system": "drone system 5475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46148213187764,
+ 39.072078153151075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5476",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5476 accessories"
+ }
+ },
+ "system": "drone system 5476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18293379013316,
+ 38.86071787289153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5477",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5477 accessories"
+ }
+ },
+ "system": "drone system 5477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0394239287442,
+ 39.63294721562233
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5478",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5478 accessories"
+ }
+ },
+ "system": "drone system 5478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22326641231854,
+ 38.831491724006874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5479",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5479 accessories"
+ }
+ },
+ "system": "drone system 5479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42988425717061,
+ 39.58891970883429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5480",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5480 accessories"
+ }
+ },
+ "system": "drone system 5480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24018427595567,
+ 39.30953735277625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5481",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5481 accessories"
+ }
+ },
+ "system": "drone system 5481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93283439724308,
+ 39.46151978067386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5482",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5482 accessories"
+ }
+ },
+ "system": "drone system 5482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.265651691974,
+ 38.40185835335413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5483",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5483 accessories"
+ }
+ },
+ "system": "drone system 5483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58341319051245,
+ 38.844505881331806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5484",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5484 accessories"
+ }
+ },
+ "system": "drone system 5484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81189763900335,
+ 38.352960646194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5485",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5485 accessories"
+ }
+ },
+ "system": "drone system 5485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43748890688447,
+ 38.69131161663882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5486",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5486 accessories"
+ }
+ },
+ "system": "drone system 5486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07889149764863,
+ 39.37643225946992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5487",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5487 accessories"
+ }
+ },
+ "system": "drone system 5487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04353376356333,
+ 39.69854231157662
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5488",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5488 accessories"
+ }
+ },
+ "system": "drone system 5488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38675475738587,
+ 38.54137012300452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5489",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5489 accessories"
+ }
+ },
+ "system": "drone system 5489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43120969113114,
+ 39.267859144692295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5490",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5490 accessories"
+ }
+ },
+ "system": "drone system 5490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09641649416497,
+ 38.812978990343694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5491",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5491 accessories"
+ }
+ },
+ "system": "drone system 5491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09502492994099,
+ 39.47210284662283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5492",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5492 accessories"
+ }
+ },
+ "system": "drone system 5492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53364165341537,
+ 38.30074286183938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5493",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5493 accessories"
+ }
+ },
+ "system": "drone system 5493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3734779664688,
+ 38.85006665424817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5494",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5494 accessories"
+ }
+ },
+ "system": "drone system 5494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38043656129672,
+ 38.31913407468005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5495",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5495 accessories"
+ }
+ },
+ "system": "drone system 5495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5112806101466,
+ 38.47066450267643
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5496",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5496 accessories"
+ }
+ },
+ "system": "drone system 5496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55673003952747,
+ 39.561042822655914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5497",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5497 accessories"
+ }
+ },
+ "system": "drone system 5497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14187764483356,
+ 38.44764852261379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5498",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5498 accessories"
+ }
+ },
+ "system": "drone system 5498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42762150419829,
+ 38.666058021699406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5499",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5499 accessories"
+ }
+ },
+ "system": "drone system 5499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20693865648325,
+ 39.549535927127785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5500",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5500 accessories"
+ }
+ },
+ "system": "drone system 5500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92398612239283,
+ 38.25649809593188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5501",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5501 accessories"
+ }
+ },
+ "system": "drone system 5501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1350715894434,
+ 39.299646757881845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5502",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5502 accessories"
+ }
+ },
+ "system": "drone system 5502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91286869219117,
+ 38.24912167353138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5503",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5503 accessories"
+ }
+ },
+ "system": "drone system 5503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3007195919237,
+ 38.90155610253344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5504",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5504 accessories"
+ }
+ },
+ "system": "drone system 5504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45122773272196,
+ 38.793495955301395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5505 accessories"
+ }
+ },
+ "system": "drone system 5505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95497001500634,
+ 38.71604454125203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5506",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5506 accessories"
+ }
+ },
+ "system": "drone system 5506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.561259408135,
+ 38.27597711032737
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5507",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5507 accessories"
+ }
+ },
+ "system": "drone system 5507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42100330387161,
+ 38.97838414925414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5508",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5508 accessories"
+ }
+ },
+ "system": "drone system 5508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4811203635535,
+ 39.11424520198169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5509",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5509 accessories"
+ }
+ },
+ "system": "drone system 5509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76010504102246,
+ 38.46979321511336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5510",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5510 accessories"
+ }
+ },
+ "system": "drone system 5510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65114949219472,
+ 39.25661573796083
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5511",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5511 accessories"
+ }
+ },
+ "system": "drone system 5511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33322791451947,
+ 38.90203617516631
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5512",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5512 accessories"
+ }
+ },
+ "system": "drone system 5512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69478007595539,
+ 39.58753816986142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5513",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5513 accessories"
+ }
+ },
+ "system": "drone system 5513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41043667200039,
+ 39.24097846923923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5514",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5514 accessories"
+ }
+ },
+ "system": "drone system 5514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47114442239035,
+ 39.19103720646503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5515",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5515 accessories"
+ }
+ },
+ "system": "drone system 5515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59757212138227,
+ 38.626448685353225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5516",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5516 accessories"
+ }
+ },
+ "system": "drone system 5516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56709534207745,
+ 39.51837850637944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5517",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5517 accessories"
+ }
+ },
+ "system": "drone system 5517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64365684228888,
+ 38.68768028885582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5518",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5518 accessories"
+ }
+ },
+ "system": "drone system 5518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63110261811586,
+ 39.30205921732747
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5519",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5519 accessories"
+ }
+ },
+ "system": "drone system 5519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42132049214753,
+ 38.65776986828747
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5520",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5520 accessories"
+ }
+ },
+ "system": "drone system 5520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38960628532674,
+ 38.95000064306824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5521",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5521 accessories"
+ }
+ },
+ "system": "drone system 5521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22573290450013,
+ 38.93270015592418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5522",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5522 accessories"
+ }
+ },
+ "system": "drone system 5522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88591476885179,
+ 39.40720732541153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5523",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5523 accessories"
+ }
+ },
+ "system": "drone system 5523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05637046937527,
+ 39.08508337316576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5524",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5524 accessories"
+ }
+ },
+ "system": "drone system 5524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05090387415152,
+ 38.541111935595225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5525",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5525 accessories"
+ }
+ },
+ "system": "drone system 5525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24427692023798,
+ 39.00752464874925
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5526",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5526 accessories"
+ }
+ },
+ "system": "drone system 5526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53013063551893,
+ 39.0962243299289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5527",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5527 accessories"
+ }
+ },
+ "system": "drone system 5527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27982268210054,
+ 38.69703832826543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5528",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5528 accessories"
+ }
+ },
+ "system": "drone system 5528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6848237243428,
+ 39.03687190480342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5529",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5529 accessories"
+ }
+ },
+ "system": "drone system 5529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38495009386827,
+ 38.51891028530284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5530",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5530 accessories"
+ }
+ },
+ "system": "drone system 5530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65851453106397,
+ 39.34156083987351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5531",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5531 accessories"
+ }
+ },
+ "system": "drone system 5531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7033917147573,
+ 38.36094558451024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5532",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5532 accessories"
+ }
+ },
+ "system": "drone system 5532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29371701185192,
+ 39.263702421616394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5533",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5533 accessories"
+ }
+ },
+ "system": "drone system 5533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90999546094909,
+ 38.69455103407332
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5534",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5534 accessories"
+ }
+ },
+ "system": "drone system 5534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32867275741677,
+ 38.92793347514662
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5535",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5535 accessories"
+ }
+ },
+ "system": "drone system 5535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62814849093355,
+ 38.87838080304338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5536",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5536 accessories"
+ }
+ },
+ "system": "drone system 5536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63242956570204,
+ 39.1702831479447
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5537",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5537 accessories"
+ }
+ },
+ "system": "drone system 5537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78626680547208,
+ 39.2659445940896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5538",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5538 accessories"
+ }
+ },
+ "system": "drone system 5538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10579698174953,
+ 39.61720353461178
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5539",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5539 accessories"
+ }
+ },
+ "system": "drone system 5539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63515145148173,
+ 39.53753327998187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5540",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5540 accessories"
+ }
+ },
+ "system": "drone system 5540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97307254896198,
+ 39.630863433986086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5541",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5541 accessories"
+ }
+ },
+ "system": "drone system 5541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55215566698453,
+ 38.704647712478575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5542",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5542 accessories"
+ }
+ },
+ "system": "drone system 5542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17053485207227,
+ 38.68426074545779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5543",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5543 accessories"
+ }
+ },
+ "system": "drone system 5543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71901428748323,
+ 39.41752250901817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5544",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5544 accessories"
+ }
+ },
+ "system": "drone system 5544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40879208423854,
+ 39.56170272855124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5545",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5545 accessories"
+ }
+ },
+ "system": "drone system 5545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30998628034709,
+ 38.45585146042852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5546",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5546 accessories"
+ }
+ },
+ "system": "drone system 5546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96790309094288,
+ 38.9902351675775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5547",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5547 accessories"
+ }
+ },
+ "system": "drone system 5547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38895942814278,
+ 39.20716342593864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5548",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5548 accessories"
+ }
+ },
+ "system": "drone system 5548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31190303042432,
+ 38.17939729586727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5549",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5549 accessories"
+ }
+ },
+ "system": "drone system 5549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66648662222273,
+ 39.616580797870576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5550",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5550 accessories"
+ }
+ },
+ "system": "drone system 5550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4268146276922,
+ 38.80693351984479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5551",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5551 accessories"
+ }
+ },
+ "system": "drone system 5551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24963012484416,
+ 38.36012437529489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5552",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5552 accessories"
+ }
+ },
+ "system": "drone system 5552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86097763834694,
+ 38.050842523079986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5553",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5553 accessories"
+ }
+ },
+ "system": "drone system 5553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70207860994255,
+ 38.34782833614469
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5554",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5554 accessories"
+ }
+ },
+ "system": "drone system 5554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82341475857224,
+ 39.73058316073257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5555",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5555 accessories"
+ }
+ },
+ "system": "drone system 5555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00262656769281,
+ 39.26680765438211
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5556",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5556 accessories"
+ }
+ },
+ "system": "drone system 5556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.93289395448313,
+ 38.99872157885931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5557",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5557 accessories"
+ }
+ },
+ "system": "drone system 5557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68480450492123,
+ 38.611896269451336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5558",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5558 accessories"
+ }
+ },
+ "system": "drone system 5558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48612044104651,
+ 38.27305664380802
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5559",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5559 accessories"
+ }
+ },
+ "system": "drone system 5559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75300849049931,
+ 38.20641686031001
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5560",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5560 accessories"
+ }
+ },
+ "system": "drone system 5560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89677689695834,
+ 38.077854516003846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5561",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5561 accessories"
+ }
+ },
+ "system": "drone system 5561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20829916500887,
+ 38.7156893007034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5562",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5562 accessories"
+ }
+ },
+ "system": "drone system 5562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73327386977844,
+ 38.582238543273654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5563",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5563 accessories"
+ }
+ },
+ "system": "drone system 5563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07739099379614,
+ 38.77555421037982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5564",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5564 accessories"
+ }
+ },
+ "system": "drone system 5564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68466965408712,
+ 39.24106014724745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5565",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5565 accessories"
+ }
+ },
+ "system": "drone system 5565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8714141407607,
+ 39.485106005975446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5566 accessories"
+ }
+ },
+ "system": "drone system 5566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8747976261595,
+ 38.36107342285706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5567",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5567 accessories"
+ }
+ },
+ "system": "drone system 5567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22912540950884,
+ 38.88908100047554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5568",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5568 accessories"
+ }
+ },
+ "system": "drone system 5568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34540101466197,
+ 39.08032717255691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5569",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5569 accessories"
+ }
+ },
+ "system": "drone system 5569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89861558728869,
+ 38.17153305919093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5570",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5570 accessories"
+ }
+ },
+ "system": "drone system 5570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2169515269798,
+ 38.65286022846493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5571",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5571 accessories"
+ }
+ },
+ "system": "drone system 5571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64396584890167,
+ 39.10661551145769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5572",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5572 accessories"
+ }
+ },
+ "system": "drone system 5572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50766575224176,
+ 39.52907898922538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5573",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5573 accessories"
+ }
+ },
+ "system": "drone system 5573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38217571544705,
+ 38.94057904291555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5574",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5574 accessories"
+ }
+ },
+ "system": "drone system 5574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8941053000775,
+ 38.05987365783365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5575",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5575 accessories"
+ }
+ },
+ "system": "drone system 5575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59530302927773,
+ 38.662021186580674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5576",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5576 accessories"
+ }
+ },
+ "system": "drone system 5576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93029095239497,
+ 38.98310879425359
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5577",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5577 accessories"
+ }
+ },
+ "system": "drone system 5577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62764782539153,
+ 38.87146442417797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5578",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5578 accessories"
+ }
+ },
+ "system": "drone system 5578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35253425313716,
+ 38.99508433967192
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5579",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5579 accessories"
+ }
+ },
+ "system": "drone system 5579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64409989456622,
+ 38.333080053369876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5580",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5580 accessories"
+ }
+ },
+ "system": "drone system 5580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39427605688768,
+ 38.73327145101248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5581",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5581 accessories"
+ }
+ },
+ "system": "drone system 5581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67364753217728,
+ 38.78198111879809
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5582",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5582 accessories"
+ }
+ },
+ "system": "drone system 5582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9510104125239,
+ 39.37798073505366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5583",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5583 accessories"
+ }
+ },
+ "system": "drone system 5583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72302068203179,
+ 38.2606873643117
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5584",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5584 accessories"
+ }
+ },
+ "system": "drone system 5584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40898223731226,
+ 38.22024781657683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5585",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5585 accessories"
+ }
+ },
+ "system": "drone system 5585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4066668849407,
+ 39.23588627536169
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5586",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5586 accessories"
+ }
+ },
+ "system": "drone system 5586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86518926424142,
+ 38.66519231290315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5587",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5587 accessories"
+ }
+ },
+ "system": "drone system 5587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80880697111418,
+ 38.335089407308615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5588",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5588 accessories"
+ }
+ },
+ "system": "drone system 5588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42657843132076,
+ 38.58365797378502
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5589",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5589 accessories"
+ }
+ },
+ "system": "drone system 5589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38029877071092,
+ 38.84153484296335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5590",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5590 accessories"
+ }
+ },
+ "system": "drone system 5590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76028009125704,
+ 38.94685010654698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5591",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5591 accessories"
+ }
+ },
+ "system": "drone system 5591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06013406703545,
+ 38.685570763180046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5592",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5592 accessories"
+ }
+ },
+ "system": "drone system 5592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65451188027095,
+ 39.609607599921894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5593",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5593 accessories"
+ }
+ },
+ "system": "drone system 5593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26733058243806,
+ 39.77036515475251
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5594",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5594 accessories"
+ }
+ },
+ "system": "drone system 5594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27712004492057,
+ 39.15103102849771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5595",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5595 accessories"
+ }
+ },
+ "system": "drone system 5595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08837458245026,
+ 38.480451441677616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5596",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5596 accessories"
+ }
+ },
+ "system": "drone system 5596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24340691700021,
+ 38.586888731413076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5597",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5597 accessories"
+ }
+ },
+ "system": "drone system 5597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34851615206165,
+ 39.48427706177326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5598",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5598 accessories"
+ }
+ },
+ "system": "drone system 5598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94343903912879,
+ 39.59279563864566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5599",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5599 accessories"
+ }
+ },
+ "system": "drone system 5599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24886566679972,
+ 39.419103148157454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5600",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5600 accessories"
+ }
+ },
+ "system": "drone system 5600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05239756467752,
+ 39.359073996806195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5601",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5601 accessories"
+ }
+ },
+ "system": "drone system 5601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55966588815946,
+ 38.21380860022725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5602",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5602 accessories"
+ }
+ },
+ "system": "drone system 5602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07310611341528,
+ 38.33409189377562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5603",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5603 accessories"
+ }
+ },
+ "system": "drone system 5603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79246782701517,
+ 38.83756627008528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5604",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5604 accessories"
+ }
+ },
+ "system": "drone system 5604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79972450722546,
+ 38.22358862906389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5605",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5605 accessories"
+ }
+ },
+ "system": "drone system 5605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15803261831041,
+ 39.00771535091407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5606",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5606 accessories"
+ }
+ },
+ "system": "drone system 5606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.899002758557,
+ 39.7024741428806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5607",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5607 accessories"
+ }
+ },
+ "system": "drone system 5607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24444318009517,
+ 38.86832806633475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5608",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5608 accessories"
+ }
+ },
+ "system": "drone system 5608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33260147295553,
+ 38.49202333644666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5609",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5609 accessories"
+ }
+ },
+ "system": "drone system 5609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6471829228191,
+ 39.496611468868586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5610",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5610 accessories"
+ }
+ },
+ "system": "drone system 5610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46390143918775,
+ 39.54627469360949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5611",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5611 accessories"
+ }
+ },
+ "system": "drone system 5611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45761370313417,
+ 39.01497493198377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5612",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5612 accessories"
+ }
+ },
+ "system": "drone system 5612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18599397608068,
+ 38.633997388948785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5613",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5613 accessories"
+ }
+ },
+ "system": "drone system 5613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33756179755683,
+ 38.5793191006692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5614",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5614 accessories"
+ }
+ },
+ "system": "drone system 5614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12507834002622,
+ 38.16781607475104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5615",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5615 accessories"
+ }
+ },
+ "system": "drone system 5615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57697829085124,
+ 39.34218329019379
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5616",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5616 accessories"
+ }
+ },
+ "system": "drone system 5616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98933761324905,
+ 39.16574119436347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5617",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5617 accessories"
+ }
+ },
+ "system": "drone system 5617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78773734189032,
+ 39.6442393323869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5618",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5618 accessories"
+ }
+ },
+ "system": "drone system 5618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84531641991985,
+ 38.80371679505613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5619",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5619 accessories"
+ }
+ },
+ "system": "drone system 5619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37956444787342,
+ 39.50685937793238
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5620",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5620 accessories"
+ }
+ },
+ "system": "drone system 5620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46084024923273,
+ 38.700743662545484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5621",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5621 accessories"
+ }
+ },
+ "system": "drone system 5621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15854898408642,
+ 38.754748523057955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5622",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5622 accessories"
+ }
+ },
+ "system": "drone system 5622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47137114790141,
+ 38.27037357438557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5623",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5623 accessories"
+ }
+ },
+ "system": "drone system 5623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4336962297429,
+ 38.86093829144714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5624",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5624 accessories"
+ }
+ },
+ "system": "drone system 5624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06630471317979,
+ 39.06568557978461
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5625",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5625 accessories"
+ }
+ },
+ "system": "drone system 5625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27627659842888,
+ 38.57738896781271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5626",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5626 accessories"
+ }
+ },
+ "system": "drone system 5626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31993123666057,
+ 38.42782720316098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5627",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5627 accessories"
+ }
+ },
+ "system": "drone system 5627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34573244095243,
+ 38.55443109681444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5628",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5628 accessories"
+ }
+ },
+ "system": "drone system 5628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88335430204853,
+ 38.98544170344145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5629",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5629 accessories"
+ }
+ },
+ "system": "drone system 5629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23329617271243,
+ 38.36625455512838
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5630",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5630 accessories"
+ }
+ },
+ "system": "drone system 5630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41261706226707,
+ 39.142940285729686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5631",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5631 accessories"
+ }
+ },
+ "system": "drone system 5631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90418510235601,
+ 39.73279033053081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5632",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5632 accessories"
+ }
+ },
+ "system": "drone system 5632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86462026003353,
+ 39.02358556730542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5633",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5633 accessories"
+ }
+ },
+ "system": "drone system 5633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15540768761234,
+ 38.107656468211644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5634",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5634 accessories"
+ }
+ },
+ "system": "drone system 5634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7974912983145,
+ 38.330068162950504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5635",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5635 accessories"
+ }
+ },
+ "system": "drone system 5635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81597313328308,
+ 39.17440176397006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5636",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5636 accessories"
+ }
+ },
+ "system": "drone system 5636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9636030150961,
+ 39.711628483551756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5637",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5637 accessories"
+ }
+ },
+ "system": "drone system 5637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09494724471091,
+ 38.411592633247466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5638",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5638 accessories"
+ }
+ },
+ "system": "drone system 5638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72342458840895,
+ 39.40002610745509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5639",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5639 accessories"
+ }
+ },
+ "system": "drone system 5639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87471128629322,
+ 39.017673103238174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5640",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5640 accessories"
+ }
+ },
+ "system": "drone system 5640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39470837685043,
+ 38.43012317151228
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5641",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5641 accessories"
+ }
+ },
+ "system": "drone system 5641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69627150430001,
+ 39.18857148505693
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5642",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5642 accessories"
+ }
+ },
+ "system": "drone system 5642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84582863691107,
+ 38.26988121155242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5643",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5643 accessories"
+ }
+ },
+ "system": "drone system 5643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41856444978335,
+ 38.25604365427384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5644",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5644 accessories"
+ }
+ },
+ "system": "drone system 5644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35550833584898,
+ 39.443963975080855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5645",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5645 accessories"
+ }
+ },
+ "system": "drone system 5645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68461926170163,
+ 38.31740422471204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5646",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5646 accessories"
+ }
+ },
+ "system": "drone system 5646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81782709397315,
+ 38.67688368559923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5647",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5647 accessories"
+ }
+ },
+ "system": "drone system 5647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4421987524989,
+ 38.738930869420415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5648",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5648 accessories"
+ }
+ },
+ "system": "drone system 5648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86234472695668,
+ 38.198561586590486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5649",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5649 accessories"
+ }
+ },
+ "system": "drone system 5649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45296051062616,
+ 38.71802926356733
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5650",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5650 accessories"
+ }
+ },
+ "system": "drone system 5650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93001575503544,
+ 38.971434576765255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5651",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5651 accessories"
+ }
+ },
+ "system": "drone system 5651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42303802512714,
+ 38.30684142121094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5652",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5652 accessories"
+ }
+ },
+ "system": "drone system 5652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91820530293316,
+ 38.34269434101179
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5653",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5653 accessories"
+ }
+ },
+ "system": "drone system 5653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51962011045704,
+ 39.35888634980418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5654",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5654 accessories"
+ }
+ },
+ "system": "drone system 5654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36655748465687,
+ 38.92365607164796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5655",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5655 accessories"
+ }
+ },
+ "system": "drone system 5655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83227040014418,
+ 39.766916460392494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5656",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5656 accessories"
+ }
+ },
+ "system": "drone system 5656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54631469126231,
+ 39.63513945242298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5657",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5657 accessories"
+ }
+ },
+ "system": "drone system 5657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0386588348042,
+ 38.70723842964543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5658",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5658 accessories"
+ }
+ },
+ "system": "drone system 5658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5244663140436,
+ 39.5361307513273
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5659",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5659 accessories"
+ }
+ },
+ "system": "drone system 5659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.738059405001,
+ 38.72016120026076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5660",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5660 accessories"
+ }
+ },
+ "system": "drone system 5660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03788794979322,
+ 39.73787948560848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5661",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5661 accessories"
+ }
+ },
+ "system": "drone system 5661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42495679682074,
+ 39.40683793789202
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5662",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5662 accessories"
+ }
+ },
+ "system": "drone system 5662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44936291206713,
+ 38.58857236068354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5663",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5663 accessories"
+ }
+ },
+ "system": "drone system 5663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79736258425746,
+ 38.73085102998895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5664",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5664 accessories"
+ }
+ },
+ "system": "drone system 5664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62131103409457,
+ 39.4847943392752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5665",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5665 accessories"
+ }
+ },
+ "system": "drone system 5665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17324646294064,
+ 39.028328734881406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5666",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5666 accessories"
+ }
+ },
+ "system": "drone system 5666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76275401103437,
+ 39.26159623124672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5667",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5667 accessories"
+ }
+ },
+ "system": "drone system 5667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3045731644855,
+ 38.91542637685207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5668",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5668 accessories"
+ }
+ },
+ "system": "drone system 5668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7683808614655,
+ 38.97321017397186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5669",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5669 accessories"
+ }
+ },
+ "system": "drone system 5669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5290322284333,
+ 39.13642271133648
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5670",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5670 accessories"
+ }
+ },
+ "system": "drone system 5670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86636219206085,
+ 38.0951548160055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5671",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5671 accessories"
+ }
+ },
+ "system": "drone system 5671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31220543331071,
+ 38.51374837921476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5672",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5672 accessories"
+ }
+ },
+ "system": "drone system 5672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54377006953399,
+ 39.55688860073882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5673",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5673 accessories"
+ }
+ },
+ "system": "drone system 5673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58226104055052,
+ 38.91730497730897
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5674",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5674 accessories"
+ }
+ },
+ "system": "drone system 5674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88488948544467,
+ 38.36673339708839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5675",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5675 accessories"
+ }
+ },
+ "system": "drone system 5675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08356230526364,
+ 38.055494729412814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5676",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5676 accessories"
+ }
+ },
+ "system": "drone system 5676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56527477358574,
+ 38.273693571422456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5677",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5677 accessories"
+ }
+ },
+ "system": "drone system 5677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70053291978809,
+ 38.15528079263017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5678",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5678 accessories"
+ }
+ },
+ "system": "drone system 5678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0167205746742,
+ 39.39079796478061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5679",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5679 accessories"
+ }
+ },
+ "system": "drone system 5679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5306943739732,
+ 38.991761870845515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5680",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5680 accessories"
+ }
+ },
+ "system": "drone system 5680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1347687138207,
+ 38.510786208950684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5681",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5681 accessories"
+ }
+ },
+ "system": "drone system 5681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60973298105398,
+ 38.59258860946553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5682",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5682 accessories"
+ }
+ },
+ "system": "drone system 5682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99343280015606,
+ 38.441044516597536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5683",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5683 accessories"
+ }
+ },
+ "system": "drone system 5683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73570844194406,
+ 38.53395887906653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5684",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5684 accessories"
+ }
+ },
+ "system": "drone system 5684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52796919444174,
+ 39.09917664078763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5685",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5685 accessories"
+ }
+ },
+ "system": "drone system 5685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.243329907876,
+ 38.09440270627145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5686",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5686 accessories"
+ }
+ },
+ "system": "drone system 5686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60890942974402,
+ 39.24224604707927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5687",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5687 accessories"
+ }
+ },
+ "system": "drone system 5687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54519394520557,
+ 38.75958084464025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5688",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5688 accessories"
+ }
+ },
+ "system": "drone system 5688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44488733448573,
+ 38.86046468353419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5689",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5689 accessories"
+ }
+ },
+ "system": "drone system 5689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01046448607568,
+ 38.67590951547939
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5690",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5690 accessories"
+ }
+ },
+ "system": "drone system 5690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34400921156883,
+ 38.998994754017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5691",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5691 accessories"
+ }
+ },
+ "system": "drone system 5691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02227105567123,
+ 38.62155394245372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5692",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5692 accessories"
+ }
+ },
+ "system": "drone system 5692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47597819534096,
+ 38.368936790607165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5693",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5693 accessories"
+ }
+ },
+ "system": "drone system 5693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15398010005431,
+ 38.15319267679607
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5694",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5694 accessories"
+ }
+ },
+ "system": "drone system 5694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50640631588087,
+ 38.92949582648394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5695",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5695 accessories"
+ }
+ },
+ "system": "drone system 5695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22112763357049,
+ 39.04292886628993
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5696",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5696 accessories"
+ }
+ },
+ "system": "drone system 5696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70686540611311,
+ 39.35519067888435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5697",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5697 accessories"
+ }
+ },
+ "system": "drone system 5697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44492268971189,
+ 39.01277809046138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5698",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5698 accessories"
+ }
+ },
+ "system": "drone system 5698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57401164733344,
+ 38.89858350280297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5699",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5699 accessories"
+ }
+ },
+ "system": "drone system 5699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57106824975098,
+ 38.25508359965082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5700",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5700 accessories"
+ }
+ },
+ "system": "drone system 5700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96104007053394,
+ 39.10362305338627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5701",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5701 accessories"
+ }
+ },
+ "system": "drone system 5701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99117607693385,
+ 38.606560966857685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5702",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5702 accessories"
+ }
+ },
+ "system": "drone system 5702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12741780004565,
+ 38.47077457343517
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5703",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5703 accessories"
+ }
+ },
+ "system": "drone system 5703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58514112745978,
+ 38.55485190613248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5704",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5704 accessories"
+ }
+ },
+ "system": "drone system 5704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63171939736019,
+ 38.19359937566174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5705",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5705 accessories"
+ }
+ },
+ "system": "drone system 5705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37916256911826,
+ 38.121463423289946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5706",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5706 accessories"
+ }
+ },
+ "system": "drone system 5706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96814586091406,
+ 38.99698027756986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5707",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5707 accessories"
+ }
+ },
+ "system": "drone system 5707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05249452686084,
+ 38.177941866948586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5708",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5708 accessories"
+ }
+ },
+ "system": "drone system 5708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4924511537497,
+ 38.880596657353024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5709",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5709 accessories"
+ }
+ },
+ "system": "drone system 5709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1439985821679,
+ 38.93768987560143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5710",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5710 accessories"
+ }
+ },
+ "system": "drone system 5710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8975434736436,
+ 39.124440874623005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5711",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5711 accessories"
+ }
+ },
+ "system": "drone system 5711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7723290319582,
+ 38.22028021102951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5712",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5712 accessories"
+ }
+ },
+ "system": "drone system 5712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45805501126107,
+ 38.27857097406792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5713",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5713 accessories"
+ }
+ },
+ "system": "drone system 5713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34190357389893,
+ 39.32592765512825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5714",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5714 accessories"
+ }
+ },
+ "system": "drone system 5714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97409360639541,
+ 39.293777698283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5715",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5715 accessories"
+ }
+ },
+ "system": "drone system 5715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2548828889587,
+ 39.48497546573304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5716",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5716 accessories"
+ }
+ },
+ "system": "drone system 5716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49664109669928,
+ 39.31805917402122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5717",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5717 accessories"
+ }
+ },
+ "system": "drone system 5717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01007182063992,
+ 38.42414223280232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5718",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5718 accessories"
+ }
+ },
+ "system": "drone system 5718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95345146327962,
+ 38.76325976024144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5719",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5719 accessories"
+ }
+ },
+ "system": "drone system 5719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18226434669046,
+ 38.90377054251133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5720",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5720 accessories"
+ }
+ },
+ "system": "drone system 5720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68814970973193,
+ 38.20630164978801
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5721",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5721 accessories"
+ }
+ },
+ "system": "drone system 5721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29143432675137,
+ 39.47169020142558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5722",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5722 accessories"
+ }
+ },
+ "system": "drone system 5722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54293260904869,
+ 38.66853217643462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5723",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5723 accessories"
+ }
+ },
+ "system": "drone system 5723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94583212309429,
+ 38.532895398224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5724",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5724 accessories"
+ }
+ },
+ "system": "drone system 5724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70985646007098,
+ 39.17280098959874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5725",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5725 accessories"
+ }
+ },
+ "system": "drone system 5725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20409160511188,
+ 38.87791718702728
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5726",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5726 accessories"
+ }
+ },
+ "system": "drone system 5726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88727576522751,
+ 39.024810609851194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5727",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5727 accessories"
+ }
+ },
+ "system": "drone system 5727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71754752580195,
+ 39.102763015746035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5728",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5728 accessories"
+ }
+ },
+ "system": "drone system 5728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19467005678729,
+ 38.70118754329539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5729",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5729 accessories"
+ }
+ },
+ "system": "drone system 5729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47760899072168,
+ 38.884031177969476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5730",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5730 accessories"
+ }
+ },
+ "system": "drone system 5730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66804665523796,
+ 38.72047908181331
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5731",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5731 accessories"
+ }
+ },
+ "system": "drone system 5731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5591860440733,
+ 38.76644413479117
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5732",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5732 accessories"
+ }
+ },
+ "system": "drone system 5732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21669828912427,
+ 38.92347297658913
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5733",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5733 accessories"
+ }
+ },
+ "system": "drone system 5733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70992441949195,
+ 38.605248376066506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5734",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5734 accessories"
+ }
+ },
+ "system": "drone system 5734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55112500943896,
+ 39.428500773133926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5735",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5735 accessories"
+ }
+ },
+ "system": "drone system 5735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62172921616832,
+ 38.788719739349055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5736",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5736 accessories"
+ }
+ },
+ "system": "drone system 5736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21369039063684,
+ 39.087215566916726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5737",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5737 accessories"
+ }
+ },
+ "system": "drone system 5737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86602119839179,
+ 39.24920945655075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5738",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5738 accessories"
+ }
+ },
+ "system": "drone system 5738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6319872866142,
+ 38.37673681059293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5739",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5739 accessories"
+ }
+ },
+ "system": "drone system 5739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63770210729497,
+ 39.353266290744216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5740",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5740 accessories"
+ }
+ },
+ "system": "drone system 5740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71450402008851,
+ 38.42805410463295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5741",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5741 accessories"
+ }
+ },
+ "system": "drone system 5741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06925072203586,
+ 38.93540312448712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5742",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5742 accessories"
+ }
+ },
+ "system": "drone system 5742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2305490054101,
+ 39.55734278151458
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5743",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5743 accessories"
+ }
+ },
+ "system": "drone system 5743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6732160434986,
+ 39.43607489447715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5744",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5744 accessories"
+ }
+ },
+ "system": "drone system 5744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69665688815486,
+ 38.89079285370988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5745",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5745 accessories"
+ }
+ },
+ "system": "drone system 5745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8949003093283,
+ 39.360122937007134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5746",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5746 accessories"
+ }
+ },
+ "system": "drone system 5746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20567126303835,
+ 39.460094431089885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5747",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5747 accessories"
+ }
+ },
+ "system": "drone system 5747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75250237130871,
+ 38.27592986986248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5748",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5748 accessories"
+ }
+ },
+ "system": "drone system 5748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36087932520857,
+ 39.00681559682049
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5749",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5749 accessories"
+ }
+ },
+ "system": "drone system 5749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23005274122312,
+ 39.16935478486299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5750",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5750 accessories"
+ }
+ },
+ "system": "drone system 5750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46802859363898,
+ 38.91150149265075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5751",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5751 accessories"
+ }
+ },
+ "system": "drone system 5751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23678857455747,
+ 38.87561569831293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5752",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5752 accessories"
+ }
+ },
+ "system": "drone system 5752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99026018676017,
+ 38.34202432953949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5753",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5753 accessories"
+ }
+ },
+ "system": "drone system 5753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30995768351234,
+ 38.97534743711929
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5754",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5754 accessories"
+ }
+ },
+ "system": "drone system 5754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45840410015765,
+ 38.47389854334496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5755",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5755 accessories"
+ }
+ },
+ "system": "drone system 5755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00865757394564,
+ 39.48704488633887
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5756",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5756 accessories"
+ }
+ },
+ "system": "drone system 5756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22366004401795,
+ 38.62589558808243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5757",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5757 accessories"
+ }
+ },
+ "system": "drone system 5757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65333711266162,
+ 38.806944183456636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5758",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5758 accessories"
+ }
+ },
+ "system": "drone system 5758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69119213841326,
+ 38.598709458742235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5759",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5759 accessories"
+ }
+ },
+ "system": "drone system 5759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56412616948442,
+ 39.56395512521425
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5760",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5760 accessories"
+ }
+ },
+ "system": "drone system 5760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39939489270213,
+ 38.84387718199913
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5761",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5761 accessories"
+ }
+ },
+ "system": "drone system 5761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70175292689088,
+ 39.03291235002115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5762",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5762 accessories"
+ }
+ },
+ "system": "drone system 5762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25065979064883,
+ 38.20498258935882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5763",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5763 accessories"
+ }
+ },
+ "system": "drone system 5763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96311754186344,
+ 38.05140081721276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5764",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5764 accessories"
+ }
+ },
+ "system": "drone system 5764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30913048363409,
+ 39.423913532786294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5765",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5765 accessories"
+ }
+ },
+ "system": "drone system 5765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34196537808454,
+ 38.46651387973328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5766",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5766 accessories"
+ }
+ },
+ "system": "drone system 5766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79972160651793,
+ 39.54656406624027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5767",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5767 accessories"
+ }
+ },
+ "system": "drone system 5767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4095938370016,
+ 38.411301726251324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5768",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5768 accessories"
+ }
+ },
+ "system": "drone system 5768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50084919258113,
+ 39.250763239814745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5769",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5769 accessories"
+ }
+ },
+ "system": "drone system 5769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55264696388335,
+ 38.561928278692356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5770",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5770 accessories"
+ }
+ },
+ "system": "drone system 5770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60859260717663,
+ 38.29871907144435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5771",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5771 accessories"
+ }
+ },
+ "system": "drone system 5771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92561192886778,
+ 38.93475219902928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5772",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5772 accessories"
+ }
+ },
+ "system": "drone system 5772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34224156551129,
+ 39.268404923723494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5773 accessories"
+ }
+ },
+ "system": "drone system 5773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75439723074368,
+ 38.7692523570679
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5774",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5774 accessories"
+ }
+ },
+ "system": "drone system 5774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26280994232927,
+ 39.58181069975682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5775",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5775 accessories"
+ }
+ },
+ "system": "drone system 5775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77453787481467,
+ 39.16871801972824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5776",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5776 accessories"
+ }
+ },
+ "system": "drone system 5776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13913598041104,
+ 38.35691670776472
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5777",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5777 accessories"
+ }
+ },
+ "system": "drone system 5777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0328145430624,
+ 39.00856247727139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5778",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5778 accessories"
+ }
+ },
+ "system": "drone system 5778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56620363494234,
+ 39.55905824256469
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5779",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5779 accessories"
+ }
+ },
+ "system": "drone system 5779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5622502681422,
+ 38.733435510563886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5780",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5780 accessories"
+ }
+ },
+ "system": "drone system 5780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5014115615483,
+ 38.91272376254339
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5781",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5781 accessories"
+ }
+ },
+ "system": "drone system 5781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32520213537043,
+ 39.72767038603074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5782",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5782 accessories"
+ }
+ },
+ "system": "drone system 5782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50331201431285,
+ 38.60232244092023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5783",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5783 accessories"
+ }
+ },
+ "system": "drone system 5783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22962809156252,
+ 39.29467420296994
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5784",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5784 accessories"
+ }
+ },
+ "system": "drone system 5784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25430219200692,
+ 39.330311142110745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5785",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5785 accessories"
+ }
+ },
+ "system": "drone system 5785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34105944810051,
+ 38.50458746875477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5786",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5786 accessories"
+ }
+ },
+ "system": "drone system 5786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23685064310114,
+ 38.607073640378054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5787",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5787 accessories"
+ }
+ },
+ "system": "drone system 5787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60592312553602,
+ 38.93688057552051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5788",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5788 accessories"
+ }
+ },
+ "system": "drone system 5788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03012387449716,
+ 38.503031926106274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5789",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5789 accessories"
+ }
+ },
+ "system": "drone system 5789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36306119006852,
+ 38.835191093151394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5790",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5790 accessories"
+ }
+ },
+ "system": "drone system 5790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05159089538078,
+ 39.253889453598845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5791",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5791 accessories"
+ }
+ },
+ "system": "drone system 5791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09766144306435,
+ 39.38215949389529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5792",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5792 accessories"
+ }
+ },
+ "system": "drone system 5792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7772848128174,
+ 38.339081351109954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5793",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5793 accessories"
+ }
+ },
+ "system": "drone system 5793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72384299453451,
+ 39.450288850317484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5794",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5794 accessories"
+ }
+ },
+ "system": "drone system 5794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36302116712604,
+ 38.61939939519283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5795",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5795 accessories"
+ }
+ },
+ "system": "drone system 5795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4325109563983,
+ 39.41473661307971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5796",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5796 accessories"
+ }
+ },
+ "system": "drone system 5796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84935302191582,
+ 38.60847288044865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5797",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5797 accessories"
+ }
+ },
+ "system": "drone system 5797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40952822300576,
+ 38.49956417488526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5798",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5798 accessories"
+ }
+ },
+ "system": "drone system 5798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87961602675246,
+ 38.865534732351776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5799",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5799 accessories"
+ }
+ },
+ "system": "drone system 5799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0207820423456,
+ 39.61821395326484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5800",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5800 accessories"
+ }
+ },
+ "system": "drone system 5800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22016841778469,
+ 39.30284942392992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5801",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5801 accessories"
+ }
+ },
+ "system": "drone system 5801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37835334612049,
+ 39.131361708381135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5802",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5802 accessories"
+ }
+ },
+ "system": "drone system 5802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58854828322143,
+ 38.662403369449954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5803",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5803 accessories"
+ }
+ },
+ "system": "drone system 5803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59771877457273,
+ 38.827519407154035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5804",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5804 accessories"
+ }
+ },
+ "system": "drone system 5804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60866606557387,
+ 38.50458433833252
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5805",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5805 accessories"
+ }
+ },
+ "system": "drone system 5805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63611594498995,
+ 38.84454605210943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5806",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5806 accessories"
+ }
+ },
+ "system": "drone system 5806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76353371012267,
+ 39.232005597696784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5807",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5807 accessories"
+ }
+ },
+ "system": "drone system 5807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27737720900483,
+ 39.11225761864063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5808",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5808 accessories"
+ }
+ },
+ "system": "drone system 5808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93691188718186,
+ 38.23639499602703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5809",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5809 accessories"
+ }
+ },
+ "system": "drone system 5809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15583265693252,
+ 38.886159717788196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5810",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5810 accessories"
+ }
+ },
+ "system": "drone system 5810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43524215075378,
+ 38.75258881463738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5811",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5811 accessories"
+ }
+ },
+ "system": "drone system 5811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8511755214457,
+ 39.23030919830572
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5812",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5812 accessories"
+ }
+ },
+ "system": "drone system 5812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65292336003169,
+ 38.44547449459353
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5813",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5813 accessories"
+ }
+ },
+ "system": "drone system 5813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42607270160205,
+ 39.274966933108146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5814",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5814 accessories"
+ }
+ },
+ "system": "drone system 5814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18714314653644,
+ 38.68643196204601
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5815",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5815 accessories"
+ }
+ },
+ "system": "drone system 5815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8155010650687,
+ 39.66502414285568
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5816",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5816 accessories"
+ }
+ },
+ "system": "drone system 5816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1363734281143,
+ 38.23960908017262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5817",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5817 accessories"
+ }
+ },
+ "system": "drone system 5817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59081018431263,
+ 39.45994084681865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5818",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5818 accessories"
+ }
+ },
+ "system": "drone system 5818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51089113629578,
+ 39.011357695167625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5819",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5819 accessories"
+ }
+ },
+ "system": "drone system 5819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88713965741383,
+ 39.681755071639486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5820",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5820 accessories"
+ }
+ },
+ "system": "drone system 5820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4202897276067,
+ 38.625358913368466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5821",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5821 accessories"
+ }
+ },
+ "system": "drone system 5821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74483158761612,
+ 38.39039789127632
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5822",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5822 accessories"
+ }
+ },
+ "system": "drone system 5822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7410620182487,
+ 38.913203351862265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5823",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5823 accessories"
+ }
+ },
+ "system": "drone system 5823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39315762841098,
+ 39.36614682940895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5824",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5824 accessories"
+ }
+ },
+ "system": "drone system 5824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82599721735275,
+ 39.0767632624053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5825",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5825 accessories"
+ }
+ },
+ "system": "drone system 5825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74978655729355,
+ 39.32422717003044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5826",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5826 accessories"
+ }
+ },
+ "system": "drone system 5826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49269247028215,
+ 39.36170222763901
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5827",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5827 accessories"
+ }
+ },
+ "system": "drone system 5827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20446232513204,
+ 39.167790037426265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5828",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5828 accessories"
+ }
+ },
+ "system": "drone system 5828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49954338282687,
+ 38.41925529031297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5829",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5829 accessories"
+ }
+ },
+ "system": "drone system 5829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50999150102115,
+ 39.2472809521257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5830",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5830 accessories"
+ }
+ },
+ "system": "drone system 5830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40150591415293,
+ 39.50628816705406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5831",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5831 accessories"
+ }
+ },
+ "system": "drone system 5831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05823261027803,
+ 39.590931955200624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5832",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5832 accessories"
+ }
+ },
+ "system": "drone system 5832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89210819901291,
+ 38.68437216031355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5833",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5833 accessories"
+ }
+ },
+ "system": "drone system 5833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60740258792538,
+ 38.28602616569661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5834",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5834 accessories"
+ }
+ },
+ "system": "drone system 5834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09717730348098,
+ 38.61993384895625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5835",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5835 accessories"
+ }
+ },
+ "system": "drone system 5835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89715772783225,
+ 39.28013446742621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5836",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5836 accessories"
+ }
+ },
+ "system": "drone system 5836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30694494882113,
+ 38.882405445081666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5837",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5837 accessories"
+ }
+ },
+ "system": "drone system 5837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52341167477923,
+ 38.75367597052602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5838",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5838 accessories"
+ }
+ },
+ "system": "drone system 5838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63152868137142,
+ 38.70596011223756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5839",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5839 accessories"
+ }
+ },
+ "system": "drone system 5839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17243050285131,
+ 39.75751926965693
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5840",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5840 accessories"
+ }
+ },
+ "system": "drone system 5840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01790762316821,
+ 38.054300728040275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5841",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5841 accessories"
+ }
+ },
+ "system": "drone system 5841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22610839794432,
+ 38.64676023538186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5842",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5842 accessories"
+ }
+ },
+ "system": "drone system 5842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15128235093516,
+ 38.55485262807937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5843",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5843 accessories"
+ }
+ },
+ "system": "drone system 5843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66999479700448,
+ 38.47769407769426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5844",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5844 accessories"
+ }
+ },
+ "system": "drone system 5844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59762396630114,
+ 38.35825044135864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5845",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5845 accessories"
+ }
+ },
+ "system": "drone system 5845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31399164122003,
+ 39.4184932618062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5846",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5846 accessories"
+ }
+ },
+ "system": "drone system 5846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3408831918675,
+ 39.32599459131987
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5847",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5847 accessories"
+ }
+ },
+ "system": "drone system 5847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25649166259103,
+ 39.57357237224925
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5848",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5848 accessories"
+ }
+ },
+ "system": "drone system 5848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80694570929498,
+ 39.44178707263148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5849",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5849 accessories"
+ }
+ },
+ "system": "drone system 5849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87395135000055,
+ 38.5451326500036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5850",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5850 accessories"
+ }
+ },
+ "system": "drone system 5850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71943606252552,
+ 38.28757827615186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5851",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5851 accessories"
+ }
+ },
+ "system": "drone system 5851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15468276759754,
+ 38.35793829106346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5852",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5852 accessories"
+ }
+ },
+ "system": "drone system 5852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67396486555145,
+ 38.33571527814337
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5853",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5853 accessories"
+ }
+ },
+ "system": "drone system 5853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61636989603967,
+ 38.97513764127284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5854",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5854 accessories"
+ }
+ },
+ "system": "drone system 5854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87127492038293,
+ 38.74062103527017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5855",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5855 accessories"
+ }
+ },
+ "system": "drone system 5855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39341292275232,
+ 39.08508451193295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5856",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5856 accessories"
+ }
+ },
+ "system": "drone system 5856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26335286158915,
+ 38.05212156630393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5857",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5857 accessories"
+ }
+ },
+ "system": "drone system 5857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36220268074821,
+ 38.84665330767161
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5858",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5858 accessories"
+ }
+ },
+ "system": "drone system 5858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71338677399112,
+ 38.46596840116182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5859",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5859 accessories"
+ }
+ },
+ "system": "drone system 5859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74098852359958,
+ 38.387897347630656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5860",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5860 accessories"
+ }
+ },
+ "system": "drone system 5860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10542116158602,
+ 39.09137746777538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5861",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5861 accessories"
+ }
+ },
+ "system": "drone system 5861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.522539662766,
+ 38.92395985353288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5862",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5862 accessories"
+ }
+ },
+ "system": "drone system 5862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50190791309669,
+ 38.82185806127519
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5863",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5863 accessories"
+ }
+ },
+ "system": "drone system 5863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74026122304234,
+ 39.03134815599662
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5864",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5864 accessories"
+ }
+ },
+ "system": "drone system 5864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0671254385932,
+ 38.53864574619152
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5865",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5865 accessories"
+ }
+ },
+ "system": "drone system 5865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63922571278542,
+ 39.405751369467026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5866",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5866 accessories"
+ }
+ },
+ "system": "drone system 5866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24280288177056,
+ 39.574818639929624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5867",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5867 accessories"
+ }
+ },
+ "system": "drone system 5867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5304913720423,
+ 39.12688643143421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5868",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5868 accessories"
+ }
+ },
+ "system": "drone system 5868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22980070182344,
+ 38.54848114334896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5869",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5869 accessories"
+ }
+ },
+ "system": "drone system 5869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36129249324024,
+ 38.618711195179806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5870",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5870 accessories"
+ }
+ },
+ "system": "drone system 5870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60063811917907,
+ 39.16992406512801
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5871",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5871 accessories"
+ }
+ },
+ "system": "drone system 5871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5921308142574,
+ 39.126177082290965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5872",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5872 accessories"
+ }
+ },
+ "system": "drone system 5872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01327910651014,
+ 39.0984957360675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5873",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5873 accessories"
+ }
+ },
+ "system": "drone system 5873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85430416773544,
+ 38.557778575454535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5874",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5874 accessories"
+ }
+ },
+ "system": "drone system 5874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25643956109674,
+ 39.202503892610075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5875",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5875 accessories"
+ }
+ },
+ "system": "drone system 5875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08794002491523,
+ 39.7448699958658
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5876",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5876 accessories"
+ }
+ },
+ "system": "drone system 5876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26245303982415,
+ 38.73531305981656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5877",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5877 accessories"
+ }
+ },
+ "system": "drone system 5877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61008830731846,
+ 38.20124641855879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5878",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5878 accessories"
+ }
+ },
+ "system": "drone system 5878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99931510779498,
+ 38.079820366828514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5879",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5879 accessories"
+ }
+ },
+ "system": "drone system 5879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96281758300874,
+ 38.54550506221533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5880",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5880 accessories"
+ }
+ },
+ "system": "drone system 5880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5451183437585,
+ 38.98311025880701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5881 accessories"
+ }
+ },
+ "system": "drone system 5881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51113633115884,
+ 39.38592431866977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5882",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5882 accessories"
+ }
+ },
+ "system": "drone system 5882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17051170914914,
+ 38.10141900988508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5883",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5883 accessories"
+ }
+ },
+ "system": "drone system 5883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85423655054532,
+ 39.7529041593351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5884",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5884 accessories"
+ }
+ },
+ "system": "drone system 5884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50675837059315,
+ 39.24833733332037
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5885",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5885 accessories"
+ }
+ },
+ "system": "drone system 5885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41720292859583,
+ 38.923257644313175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5886",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5886 accessories"
+ }
+ },
+ "system": "drone system 5886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70005575736549,
+ 39.11054217740546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5887",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5887 accessories"
+ }
+ },
+ "system": "drone system 5887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79702155266419,
+ 38.05210700774586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5888",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5888 accessories"
+ }
+ },
+ "system": "drone system 5888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11499603562328,
+ 39.09179791549883
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5889",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5889 accessories"
+ }
+ },
+ "system": "drone system 5889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91663667679481,
+ 39.45326753258305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5890",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5890 accessories"
+ }
+ },
+ "system": "drone system 5890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08030196306005,
+ 38.750209620564256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5891",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5891 accessories"
+ }
+ },
+ "system": "drone system 5891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52119756498459,
+ 39.35177312075317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5892",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5892 accessories"
+ }
+ },
+ "system": "drone system 5892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58140226687654,
+ 38.69593884500771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5893",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5893 accessories"
+ }
+ },
+ "system": "drone system 5893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8582888467122,
+ 39.52380527918671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5894",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5894 accessories"
+ }
+ },
+ "system": "drone system 5894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63721614681793,
+ 38.25156561483108
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5895",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5895 accessories"
+ }
+ },
+ "system": "drone system 5895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24851478472081,
+ 39.43104098050595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5896",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5896 accessories"
+ }
+ },
+ "system": "drone system 5896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85199619823828,
+ 38.954081644454085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5897",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5897 accessories"
+ }
+ },
+ "system": "drone system 5897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97815571478048,
+ 39.404535275382315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5898",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5898 accessories"
+ }
+ },
+ "system": "drone system 5898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65283656000577,
+ 38.79667219065445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5899",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5899 accessories"
+ }
+ },
+ "system": "drone system 5899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55088462303617,
+ 39.091861760669765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5900",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5900 accessories"
+ }
+ },
+ "system": "drone system 5900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14665053050997,
+ 38.4388609917869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5901",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5901 accessories"
+ }
+ },
+ "system": "drone system 5901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66310124855666,
+ 39.441891448564384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5902",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5902 accessories"
+ }
+ },
+ "system": "drone system 5902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37315274468584,
+ 38.9762494922985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5903",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5903 accessories"
+ }
+ },
+ "system": "drone system 5903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8751574110805,
+ 38.69914415265165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5904",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5904 accessories"
+ }
+ },
+ "system": "drone system 5904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22727023630026,
+ 38.80760298728834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5905",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5905 accessories"
+ }
+ },
+ "system": "drone system 5905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3961629350997,
+ 38.4191445618242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5906",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5906 accessories"
+ }
+ },
+ "system": "drone system 5906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78210229980557,
+ 38.51889705298085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5907",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5907 accessories"
+ }
+ },
+ "system": "drone system 5907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35807892827717,
+ 39.20960479237189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5908",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5908 accessories"
+ }
+ },
+ "system": "drone system 5908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20244398679034,
+ 39.42902502655451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5909",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5909 accessories"
+ }
+ },
+ "system": "drone system 5909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32191536435336,
+ 39.62315331648667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5910",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5910 accessories"
+ }
+ },
+ "system": "drone system 5910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22415575748035,
+ 38.38277104370178
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5911",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5911 accessories"
+ }
+ },
+ "system": "drone system 5911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50443258283627,
+ 38.44023339984112
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5912",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5912 accessories"
+ }
+ },
+ "system": "drone system 5912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33711922468912,
+ 39.22929858446586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5913",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5913 accessories"
+ }
+ },
+ "system": "drone system 5913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07889251748794,
+ 38.41075864281785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5914",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5914 accessories"
+ }
+ },
+ "system": "drone system 5914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74575479045157,
+ 38.441224966426155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5915",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5915 accessories"
+ }
+ },
+ "system": "drone system 5915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82756910175968,
+ 39.045523969986135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5916",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5916 accessories"
+ }
+ },
+ "system": "drone system 5916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28731452561553,
+ 38.08233177420524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5917",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5917 accessories"
+ }
+ },
+ "system": "drone system 5917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9596150229826,
+ 38.195986552357674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5918",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5918 accessories"
+ }
+ },
+ "system": "drone system 5918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29799623562226,
+ 38.645753190909886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5919",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5919 accessories"
+ }
+ },
+ "system": "drone system 5919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49661672569536,
+ 38.30540185654928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5920",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5920 accessories"
+ }
+ },
+ "system": "drone system 5920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40666642450303,
+ 38.991037752425605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5921",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5921 accessories"
+ }
+ },
+ "system": "drone system 5921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83663381115099,
+ 39.43940628899436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5922",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5922 accessories"
+ }
+ },
+ "system": "drone system 5922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00335348377999,
+ 39.430450491699474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5923",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5923 accessories"
+ }
+ },
+ "system": "drone system 5923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2278115284012,
+ 38.99909187513595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5924",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5924 accessories"
+ }
+ },
+ "system": "drone system 5924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62415056704269,
+ 38.434269701853026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5925",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5925 accessories"
+ }
+ },
+ "system": "drone system 5925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46591538486265,
+ 38.120888424270646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5926",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5926 accessories"
+ }
+ },
+ "system": "drone system 5926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42022645817774,
+ 38.807913292049186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5927",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5927 accessories"
+ }
+ },
+ "system": "drone system 5927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69339758643986,
+ 38.495794213865956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5928",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5928 accessories"
+ }
+ },
+ "system": "drone system 5928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50903758081243,
+ 38.951022058713455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5929",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5929 accessories"
+ }
+ },
+ "system": "drone system 5929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10119979299482,
+ 38.35163303521879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5930",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5930 accessories"
+ }
+ },
+ "system": "drone system 5930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87087158623292,
+ 38.12362135459864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5931",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5931 accessories"
+ }
+ },
+ "system": "drone system 5931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36040514769249,
+ 38.679138939582444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5932",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5932 accessories"
+ }
+ },
+ "system": "drone system 5932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53824935428025,
+ 38.84453502072973
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5933",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5933 accessories"
+ }
+ },
+ "system": "drone system 5933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91789311832495,
+ 38.78645148284418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5934",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5934 accessories"
+ }
+ },
+ "system": "drone system 5934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56329337929166,
+ 38.97960439932532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5935",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5935 accessories"
+ }
+ },
+ "system": "drone system 5935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60773015505094,
+ 39.195688660773705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5936",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5936 accessories"
+ }
+ },
+ "system": "drone system 5936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49512614552874,
+ 38.82140355889456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5937",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5937 accessories"
+ }
+ },
+ "system": "drone system 5937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2600007397794,
+ 39.22149759793565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5938",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5938 accessories"
+ }
+ },
+ "system": "drone system 5938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87158107659819,
+ 38.05881737432487
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5939",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5939 accessories"
+ }
+ },
+ "system": "drone system 5939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68973673929615,
+ 39.28290343617114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5940",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5940 accessories"
+ }
+ },
+ "system": "drone system 5940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1068266321998,
+ 39.02788408278198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5941",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5941 accessories"
+ }
+ },
+ "system": "drone system 5941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20768367372843,
+ 38.58305504999818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5942",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5942 accessories"
+ }
+ },
+ "system": "drone system 5942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41306883981791,
+ 38.90781689135485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5943",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5943 accessories"
+ }
+ },
+ "system": "drone system 5943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42023256872524,
+ 38.55091421472924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5944",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5944 accessories"
+ }
+ },
+ "system": "drone system 5944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46602003513175,
+ 38.888920405626244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5945",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5945 accessories"
+ }
+ },
+ "system": "drone system 5945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53289427013003,
+ 38.81486836679051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5946",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5946 accessories"
+ }
+ },
+ "system": "drone system 5946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84858624148124,
+ 38.50907573832124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5947",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5947 accessories"
+ }
+ },
+ "system": "drone system 5947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3062131065079,
+ 39.046207439457596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5948",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5948 accessories"
+ }
+ },
+ "system": "drone system 5948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68106705835052,
+ 39.56367814653291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5949",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5949 accessories"
+ }
+ },
+ "system": "drone system 5949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39486278631445,
+ 39.167865342011886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5950",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5950 accessories"
+ }
+ },
+ "system": "drone system 5950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76660937430017,
+ 38.15387060204806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5951",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5951 accessories"
+ }
+ },
+ "system": "drone system 5951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.232726044552,
+ 38.723123191073604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5952",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5952 accessories"
+ }
+ },
+ "system": "drone system 5952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8953454324231,
+ 38.77215018533774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5953",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5953 accessories"
+ }
+ },
+ "system": "drone system 5953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12595552639027,
+ 38.05433326011374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5954",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5954 accessories"
+ }
+ },
+ "system": "drone system 5954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47179915361691,
+ 38.58991297738164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5955",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5955 accessories"
+ }
+ },
+ "system": "drone system 5955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57183095469833,
+ 38.934560812129604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5956",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5956 accessories"
+ }
+ },
+ "system": "drone system 5956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53603862220504,
+ 38.28963438600637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5957",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5957 accessories"
+ }
+ },
+ "system": "drone system 5957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02318018615819,
+ 38.27337641551087
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5958",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5958 accessories"
+ }
+ },
+ "system": "drone system 5958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7281494550247,
+ 38.93484295787952
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5959",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5959 accessories"
+ }
+ },
+ "system": "drone system 5959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44838732486961,
+ 38.68765363200824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5960",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5960 accessories"
+ }
+ },
+ "system": "drone system 5960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48969382422497,
+ 38.77123921060185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5961",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5961 accessories"
+ }
+ },
+ "system": "drone system 5961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15175845102748,
+ 38.86673081508221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5962",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5962 accessories"
+ }
+ },
+ "system": "drone system 5962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03794777894943,
+ 39.13479642585354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5963",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5963 accessories"
+ }
+ },
+ "system": "drone system 5963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84455064104472,
+ 38.81745781571367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5964",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5964 accessories"
+ }
+ },
+ "system": "drone system 5964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6969221891767,
+ 38.42623247428809
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5965",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5965 accessories"
+ }
+ },
+ "system": "drone system 5965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11661121732712,
+ 38.60023747289535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5966",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5966 accessories"
+ }
+ },
+ "system": "drone system 5966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61244798272618,
+ 38.28147800816803
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5967",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5967 accessories"
+ }
+ },
+ "system": "drone system 5967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13120532039328,
+ 39.64355893507567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5968",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5968 accessories"
+ }
+ },
+ "system": "drone system 5968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73571807448661,
+ 38.5314667710914
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5969",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5969 accessories"
+ }
+ },
+ "system": "drone system 5969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69585454968583,
+ 38.88839656376851
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5970",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5970 accessories"
+ }
+ },
+ "system": "drone system 5970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08136196738783,
+ 38.379212380727026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5971",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5971 accessories"
+ }
+ },
+ "system": "drone system 5971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49844986557609,
+ 38.681407839637956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5972",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5972 accessories"
+ }
+ },
+ "system": "drone system 5972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26656218277094,
+ 38.105843433833236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5973",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5973 accessories"
+ }
+ },
+ "system": "drone system 5973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67719126411879,
+ 38.768461137239406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5974",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5974 accessories"
+ }
+ },
+ "system": "drone system 5974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3637580554566,
+ 38.85369702415664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5975",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5975 accessories"
+ }
+ },
+ "system": "drone system 5975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70596827291553,
+ 38.72362811114677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5976",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5976 accessories"
+ }
+ },
+ "system": "drone system 5976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71078204417118,
+ 38.43090854411042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5977",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5977 accessories"
+ }
+ },
+ "system": "drone system 5977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51070456696773,
+ 39.64516449948358
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5978",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5978 accessories"
+ }
+ },
+ "system": "drone system 5978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74514341029429,
+ 38.79249592527721
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5979",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5979 accessories"
+ }
+ },
+ "system": "drone system 5979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07851795461825,
+ 38.147500247845656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5980",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5980 accessories"
+ }
+ },
+ "system": "drone system 5980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44894744572214,
+ 38.855233446466116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5981",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5981 accessories"
+ }
+ },
+ "system": "drone system 5981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36090936672623,
+ 38.15190649475148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5982",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5982 accessories"
+ }
+ },
+ "system": "drone system 5982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33402858046381,
+ 39.629556461409635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5983",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5983 accessories"
+ }
+ },
+ "system": "drone system 5983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60814473405811,
+ 39.037523879341364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5984",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5984 accessories"
+ }
+ },
+ "system": "drone system 5984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47414707914088,
+ 38.68694443639441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5985",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5985 accessories"
+ }
+ },
+ "system": "drone system 5985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22046569315197,
+ 38.572644244482916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5986",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5986 accessories"
+ }
+ },
+ "system": "drone system 5986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54124381109858,
+ 38.45540498110206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5987",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5987 accessories"
+ }
+ },
+ "system": "drone system 5987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38680563901471,
+ 39.61195788802189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5988",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5988 accessories"
+ }
+ },
+ "system": "drone system 5988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55774375898288,
+ 38.74050493778519
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5989",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5989 accessories"
+ }
+ },
+ "system": "drone system 5989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26308270223873,
+ 39.29505474959665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5990",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5990 accessories"
+ }
+ },
+ "system": "drone system 5990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25552115875482,
+ 38.940206076600596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5991",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5991 accessories"
+ }
+ },
+ "system": "drone system 5991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7623306649452,
+ 39.581634550240096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5992",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5992 accessories"
+ }
+ },
+ "system": "drone system 5992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84114276289286,
+ 38.98494302005485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5993",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5993 accessories"
+ }
+ },
+ "system": "drone system 5993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53930361777476,
+ 39.45332339062327
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5994",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5994 accessories"
+ }
+ },
+ "system": "drone system 5994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07713444825698,
+ 38.662979704907166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5995",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5995 accessories"
+ }
+ },
+ "system": "drone system 5995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84261119548401,
+ 38.7378294794695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5996",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5996 accessories"
+ }
+ },
+ "system": "drone system 5996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82060056591165,
+ 39.54683389550864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5997",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5997 accessories"
+ }
+ },
+ "system": "drone system 5997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21037364906469,
+ 38.65099693976576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5998",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5998 accessories"
+ }
+ },
+ "system": "drone system 5998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22186156466168,
+ 39.12360404287109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone5999",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone5999 accessories"
+ }
+ },
+ "system": "drone system 5999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31167400914266,
+ 39.62647441698272
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6000",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6000 accessories"
+ }
+ },
+ "system": "drone system 6000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42702141952381,
+ 38.26949180899071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6001",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6001 accessories"
+ }
+ },
+ "system": "drone system 6001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3346082634528,
+ 39.15953012421681
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6002",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6002 accessories"
+ }
+ },
+ "system": "drone system 6002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27367305834495,
+ 39.10838844068582
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6003",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6003 accessories"
+ }
+ },
+ "system": "drone system 6003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35700264258595,
+ 39.074215700904944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6004",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6004 accessories"
+ }
+ },
+ "system": "drone system 6004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11730935104792,
+ 39.600781047138454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6005",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6005 accessories"
+ }
+ },
+ "system": "drone system 6005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60163997123988,
+ 38.53462313811535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6006",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6006 accessories"
+ }
+ },
+ "system": "drone system 6006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74850803849348,
+ 38.45007260879389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6007",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6007 accessories"
+ }
+ },
+ "system": "drone system 6007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48419307124051,
+ 39.28274445577496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6008",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6008 accessories"
+ }
+ },
+ "system": "drone system 6008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24581421928434,
+ 38.244442662248325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6009",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6009 accessories"
+ }
+ },
+ "system": "drone system 6009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77034124622638,
+ 39.012619602033155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6010",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6010 accessories"
+ }
+ },
+ "system": "drone system 6010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87863937109974,
+ 38.27238963767646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6011",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6011 accessories"
+ }
+ },
+ "system": "drone system 6011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97387112541705,
+ 38.756697285555084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6012",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6012 accessories"
+ }
+ },
+ "system": "drone system 6012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21114446535496,
+ 38.94647465560792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6013",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6013 accessories"
+ }
+ },
+ "system": "drone system 6013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54668625843716,
+ 39.29958521936646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6014",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6014 accessories"
+ }
+ },
+ "system": "drone system 6014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02958511794057,
+ 38.58851174102584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6015",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6015 accessories"
+ }
+ },
+ "system": "drone system 6015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65930361885114,
+ 39.30232936490798
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6016",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6016 accessories"
+ }
+ },
+ "system": "drone system 6016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5784415544029,
+ 38.89846024897826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6017",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6017 accessories"
+ }
+ },
+ "system": "drone system 6017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44912640680356,
+ 39.02461491390507
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6018",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6018 accessories"
+ }
+ },
+ "system": "drone system 6018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47642348860646,
+ 39.00640431045202
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6019",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6019 accessories"
+ }
+ },
+ "system": "drone system 6019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47112835693167,
+ 39.11526691959867
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6020",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6020 accessories"
+ }
+ },
+ "system": "drone system 6020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66979047891031,
+ 38.85075884884878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6021",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6021 accessories"
+ }
+ },
+ "system": "drone system 6021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40457885688133,
+ 39.12745626419305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6022",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6022 accessories"
+ }
+ },
+ "system": "drone system 6022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22340931261631,
+ 39.02761280511393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6023",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6023 accessories"
+ }
+ },
+ "system": "drone system 6023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61378412249549,
+ 39.40058757571076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6024",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6024 accessories"
+ }
+ },
+ "system": "drone system 6024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96791478083622,
+ 39.024916558482516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6025",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6025 accessories"
+ }
+ },
+ "system": "drone system 6025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42415943232439,
+ 38.43152189349258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6026",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6026 accessories"
+ }
+ },
+ "system": "drone system 6026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33815120937687,
+ 39.580641637694335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6027",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6027 accessories"
+ }
+ },
+ "system": "drone system 6027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39233723863298,
+ 39.191229487726424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6028",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6028 accessories"
+ }
+ },
+ "system": "drone system 6028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41437722847552,
+ 38.70350286638589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6029",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6029 accessories"
+ }
+ },
+ "system": "drone system 6029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67011575674964,
+ 38.895095360141134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6030",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6030 accessories"
+ }
+ },
+ "system": "drone system 6030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07305612572343,
+ 39.54384631113853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6031",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6031 accessories"
+ }
+ },
+ "system": "drone system 6031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33677275699505,
+ 39.688839297251015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6032",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6032 accessories"
+ }
+ },
+ "system": "drone system 6032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3669207492626,
+ 38.53592777806194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6033",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6033 accessories"
+ }
+ },
+ "system": "drone system 6033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86880884754527,
+ 39.10966961475511
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6034",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6034 accessories"
+ }
+ },
+ "system": "drone system 6034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2800107694161,
+ 38.94668585372237
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6035",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6035 accessories"
+ }
+ },
+ "system": "drone system 6035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46744469352063,
+ 38.59869707372558
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6036",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6036 accessories"
+ }
+ },
+ "system": "drone system 6036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67696007142278,
+ 39.038563375093965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6037",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6037 accessories"
+ }
+ },
+ "system": "drone system 6037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35285629912447,
+ 38.95849015038356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6038",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6038 accessories"
+ }
+ },
+ "system": "drone system 6038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03862719708444,
+ 39.20409235970853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6039",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6039 accessories"
+ }
+ },
+ "system": "drone system 6039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22474297559383,
+ 39.08103621001059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6040",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6040 accessories"
+ }
+ },
+ "system": "drone system 6040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50858128797081,
+ 38.67372109362548
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6041",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6041 accessories"
+ }
+ },
+ "system": "drone system 6041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34964678598594,
+ 38.555769209946845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6042",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6042 accessories"
+ }
+ },
+ "system": "drone system 6042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65285013772751,
+ 39.320666216484646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6043",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6043 accessories"
+ }
+ },
+ "system": "drone system 6043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01786489565168,
+ 38.861237013241336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6044",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6044 accessories"
+ }
+ },
+ "system": "drone system 6044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96684753443881,
+ 38.19272646429819
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6045",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6045 accessories"
+ }
+ },
+ "system": "drone system 6045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36855317588532,
+ 39.69728417287525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6046",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6046 accessories"
+ }
+ },
+ "system": "drone system 6046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86130651507462,
+ 39.299997003674044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6047",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6047 accessories"
+ }
+ },
+ "system": "drone system 6047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37067621072585,
+ 39.012431346247965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6048",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6048 accessories"
+ }
+ },
+ "system": "drone system 6048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8925104147146,
+ 38.80713170722032
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6049",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6049 accessories"
+ }
+ },
+ "system": "drone system 6049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8823422980049,
+ 39.304677910548946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6050",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6050 accessories"
+ }
+ },
+ "system": "drone system 6050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75971191828864,
+ 39.35354058537815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6051",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6051 accessories"
+ }
+ },
+ "system": "drone system 6051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72163055033528,
+ 39.39772557565769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6052",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6052 accessories"
+ }
+ },
+ "system": "drone system 6052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38872821615566,
+ 38.34995688092523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6053",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6053 accessories"
+ }
+ },
+ "system": "drone system 6053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89309008509137,
+ 39.5509188917446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6054",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6054 accessories"
+ }
+ },
+ "system": "drone system 6054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31201766935348,
+ 38.857376170767054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6055",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6055 accessories"
+ }
+ },
+ "system": "drone system 6055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2321683095782,
+ 38.531681337676545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6056",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6056 accessories"
+ }
+ },
+ "system": "drone system 6056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11873067843408,
+ 38.25892507133801
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6057",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6057 accessories"
+ }
+ },
+ "system": "drone system 6057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28218403216387,
+ 39.37836569586211
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6058",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6058 accessories"
+ }
+ },
+ "system": "drone system 6058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81803669005302,
+ 38.95347803200626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6059",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6059 accessories"
+ }
+ },
+ "system": "drone system 6059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81166567999185,
+ 38.67331013678982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6060",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6060 accessories"
+ }
+ },
+ "system": "drone system 6060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82469999709598,
+ 39.48900184493217
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6061",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6061 accessories"
+ }
+ },
+ "system": "drone system 6061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78270502368434,
+ 38.41007597404238
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6062",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6062 accessories"
+ }
+ },
+ "system": "drone system 6062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.057171837364,
+ 39.287915093562155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6063",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6063 accessories"
+ }
+ },
+ "system": "drone system 6063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24261675500748,
+ 39.64301196372054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6064",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6064 accessories"
+ }
+ },
+ "system": "drone system 6064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35013057240916,
+ 39.1662768461384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6065",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6065 accessories"
+ }
+ },
+ "system": "drone system 6065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41964731573545,
+ 39.16871975903221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6066",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6066 accessories"
+ }
+ },
+ "system": "drone system 6066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6047830421517,
+ 38.705548497273774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6067",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6067 accessories"
+ }
+ },
+ "system": "drone system 6067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63883987047873,
+ 38.254165284926536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6068",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6068 accessories"
+ }
+ },
+ "system": "drone system 6068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71199631734451,
+ 39.354513305609835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6069",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6069 accessories"
+ }
+ },
+ "system": "drone system 6069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45986974947758,
+ 38.31631506706125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6070",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6070 accessories"
+ }
+ },
+ "system": "drone system 6070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80745183295461,
+ 38.41109433551577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6071",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6071 accessories"
+ }
+ },
+ "system": "drone system 6071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26516298049884,
+ 38.91956456687058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6072",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6072 accessories"
+ }
+ },
+ "system": "drone system 6072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7989198163951,
+ 39.12060406569034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6073",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6073 accessories"
+ }
+ },
+ "system": "drone system 6073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66569298204769,
+ 38.575513641968456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6074",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6074 accessories"
+ }
+ },
+ "system": "drone system 6074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41982632219938,
+ 39.406340697238186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6075",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6075 accessories"
+ }
+ },
+ "system": "drone system 6075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03225143441551,
+ 38.327150992642146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6076",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6076 accessories"
+ }
+ },
+ "system": "drone system 6076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98345329932188,
+ 39.037960082913244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6077",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6077 accessories"
+ }
+ },
+ "system": "drone system 6077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5280077743907,
+ 39.09245212347872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6078",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6078 accessories"
+ }
+ },
+ "system": "drone system 6078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45944323709831,
+ 39.42199576530722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6079",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6079 accessories"
+ }
+ },
+ "system": "drone system 6079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50383356553158,
+ 38.893968996516385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6080",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6080 accessories"
+ }
+ },
+ "system": "drone system 6080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24087704294328,
+ 38.8842647513296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6081",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6081 accessories"
+ }
+ },
+ "system": "drone system 6081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82499399232526,
+ 38.198044237731615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6082",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6082 accessories"
+ }
+ },
+ "system": "drone system 6082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30603945979239,
+ 39.148323993110075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6083",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6083 accessories"
+ }
+ },
+ "system": "drone system 6083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5193251063475,
+ 38.42756442286347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6084",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6084 accessories"
+ }
+ },
+ "system": "drone system 6084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45981631799143,
+ 38.71809568062011
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6085",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6085 accessories"
+ }
+ },
+ "system": "drone system 6085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15043545185752,
+ 39.268902641379825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6086",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6086 accessories"
+ }
+ },
+ "system": "drone system 6086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97468046376248,
+ 38.61201671169651
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6087",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6087 accessories"
+ }
+ },
+ "system": "drone system 6087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30656186449957,
+ 38.54362125497882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6088",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6088 accessories"
+ }
+ },
+ "system": "drone system 6088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8954786990844,
+ 39.039712615265124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6089",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6089 accessories"
+ }
+ },
+ "system": "drone system 6089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41049567067651,
+ 38.714147701148754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6090",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6090 accessories"
+ }
+ },
+ "system": "drone system 6090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4350949909015,
+ 39.40850484851366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6091",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6091 accessories"
+ }
+ },
+ "system": "drone system 6091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10453676354837,
+ 39.011021858177216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6092",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6092 accessories"
+ }
+ },
+ "system": "drone system 6092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72550708214844,
+ 38.91014883070441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6093",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6093 accessories"
+ }
+ },
+ "system": "drone system 6093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37811622122736,
+ 38.65142965353349
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6094",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6094 accessories"
+ }
+ },
+ "system": "drone system 6094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5280686881557,
+ 38.25569277116276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6095",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6095 accessories"
+ }
+ },
+ "system": "drone system 6095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66909206852013,
+ 39.024575227865824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6096",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6096 accessories"
+ }
+ },
+ "system": "drone system 6096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77690414132117,
+ 38.91268137490968
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6097",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6097 accessories"
+ }
+ },
+ "system": "drone system 6097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4387923793979,
+ 39.26150372962618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6098",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6098 accessories"
+ }
+ },
+ "system": "drone system 6098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38443620487277,
+ 38.74812169955403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6099",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6099 accessories"
+ }
+ },
+ "system": "drone system 6099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10519876260973,
+ 38.87890456722632
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6100",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6100 accessories"
+ }
+ },
+ "system": "drone system 6100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23700137011114,
+ 38.42229169223906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6101",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6101 accessories"
+ }
+ },
+ "system": "drone system 6101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20496158346734,
+ 38.402841850641494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6102",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6102 accessories"
+ }
+ },
+ "system": "drone system 6102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44357352819145,
+ 39.35970353737955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6103",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6103 accessories"
+ }
+ },
+ "system": "drone system 6103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36499753789649,
+ 38.16340846863841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6104",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6104 accessories"
+ }
+ },
+ "system": "drone system 6104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55533388570949,
+ 38.57832549054462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6105",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6105 accessories"
+ }
+ },
+ "system": "drone system 6105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14170492482339,
+ 39.465093171449546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6106",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6106 accessories"
+ }
+ },
+ "system": "drone system 6106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96273518962794,
+ 39.25886142088424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6107",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6107 accessories"
+ }
+ },
+ "system": "drone system 6107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00761787515484,
+ 39.4936832686398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6108",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6108 accessories"
+ }
+ },
+ "system": "drone system 6108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55193850757557,
+ 38.71831556491082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6109",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6109 accessories"
+ }
+ },
+ "system": "drone system 6109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38997127442398,
+ 39.16899144015489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6110",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6110 accessories"
+ }
+ },
+ "system": "drone system 6110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51761415112118,
+ 38.74882725944362
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6111",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6111 accessories"
+ }
+ },
+ "system": "drone system 6111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04563340371826,
+ 38.42901088329774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6112",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6112 accessories"
+ }
+ },
+ "system": "drone system 6112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50386255360576,
+ 39.626462929047825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6113",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6113 accessories"
+ }
+ },
+ "system": "drone system 6113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48059249094364,
+ 39.43875923073514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6114",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6114 accessories"
+ }
+ },
+ "system": "drone system 6114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87415338142284,
+ 38.85946885620523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6115",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6115 accessories"
+ }
+ },
+ "system": "drone system 6115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37514918876302,
+ 38.33574509087817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6116",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6116 accessories"
+ }
+ },
+ "system": "drone system 6116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62274749395718,
+ 39.26507524325747
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6117",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6117 accessories"
+ }
+ },
+ "system": "drone system 6117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29461293469063,
+ 39.61743865624926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6118",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6118 accessories"
+ }
+ },
+ "system": "drone system 6118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26018677572648,
+ 38.53342731032979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6119",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6119 accessories"
+ }
+ },
+ "system": "drone system 6119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37869420885923,
+ 39.17878619783188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6120",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6120 accessories"
+ }
+ },
+ "system": "drone system 6120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36825656778753,
+ 38.31090292833826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6121",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6121 accessories"
+ }
+ },
+ "system": "drone system 6121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34620147028875,
+ 39.225973368001824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6122",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6122 accessories"
+ }
+ },
+ "system": "drone system 6122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12679171447809,
+ 38.665579088786956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6123",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6123 accessories"
+ }
+ },
+ "system": "drone system 6123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56287736653955,
+ 38.63264302740758
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6124",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6124 accessories"
+ }
+ },
+ "system": "drone system 6124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32897375022422,
+ 39.22909447391455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6125",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6125 accessories"
+ }
+ },
+ "system": "drone system 6125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5952474400014,
+ 38.656042625397305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6126",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6126 accessories"
+ }
+ },
+ "system": "drone system 6126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17363152420948,
+ 39.14830934685719
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6127",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6127 accessories"
+ }
+ },
+ "system": "drone system 6127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73163518480419,
+ 39.3981201109212
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6128",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6128 accessories"
+ }
+ },
+ "system": "drone system 6128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45751686299062,
+ 38.60815197092879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6129",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6129 accessories"
+ }
+ },
+ "system": "drone system 6129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48965596455254,
+ 38.84747044570869
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6130",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6130 accessories"
+ }
+ },
+ "system": "drone system 6130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82504171135152,
+ 38.70773575842695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6131",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6131 accessories"
+ }
+ },
+ "system": "drone system 6131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67320382728502,
+ 38.57889574248318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6132",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6132 accessories"
+ }
+ },
+ "system": "drone system 6132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29807436793202,
+ 38.97703785329913
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6133",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6133 accessories"
+ }
+ },
+ "system": "drone system 6133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70690152061547,
+ 39.37529524041989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6134",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6134 accessories"
+ }
+ },
+ "system": "drone system 6134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91902324285743,
+ 38.8413388389731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6135",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6135 accessories"
+ }
+ },
+ "system": "drone system 6135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29789154668164,
+ 38.60369030257628
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6136",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6136 accessories"
+ }
+ },
+ "system": "drone system 6136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78340351471603,
+ 38.556489285057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6137",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6137 accessories"
+ }
+ },
+ "system": "drone system 6137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88003728022134,
+ 39.493083684647964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6138",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6138 accessories"
+ }
+ },
+ "system": "drone system 6138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50603853822093,
+ 39.48248111999788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6139",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6139 accessories"
+ }
+ },
+ "system": "drone system 6139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87049208359709,
+ 38.61192834528143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6140",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6140 accessories"
+ }
+ },
+ "system": "drone system 6140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46605740971408,
+ 38.749793351920204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6141",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6141 accessories"
+ }
+ },
+ "system": "drone system 6141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5299687165256,
+ 39.430521353235996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6142",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6142 accessories"
+ }
+ },
+ "system": "drone system 6142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07948307233086,
+ 38.01013322543823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6143",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6143 accessories"
+ }
+ },
+ "system": "drone system 6143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45115601219915,
+ 38.750632507882436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6144",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6144 accessories"
+ }
+ },
+ "system": "drone system 6144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79494816131192,
+ 38.60325415409691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6145",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6145 accessories"
+ }
+ },
+ "system": "drone system 6145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5704477998199,
+ 38.59753066077368
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6146",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6146 accessories"
+ }
+ },
+ "system": "drone system 6146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96076281807028,
+ 39.42709078040787
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6147",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6147 accessories"
+ }
+ },
+ "system": "drone system 6147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51035503170358,
+ 38.5621203099188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6148",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6148 accessories"
+ }
+ },
+ "system": "drone system 6148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90093928283925,
+ 38.89814131266372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6149",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6149 accessories"
+ }
+ },
+ "system": "drone system 6149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92612220441093,
+ 39.25606261541613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6150",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6150 accessories"
+ }
+ },
+ "system": "drone system 6150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11212393819184,
+ 39.3863504603185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6151",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6151 accessories"
+ }
+ },
+ "system": "drone system 6151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44125071341671,
+ 39.23731827493295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6152",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6152 accessories"
+ }
+ },
+ "system": "drone system 6152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78279409236745,
+ 38.962950364569586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6153",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6153 accessories"
+ }
+ },
+ "system": "drone system 6153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21678762396998,
+ 38.63442344677779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6154",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6154 accessories"
+ }
+ },
+ "system": "drone system 6154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77870643783561,
+ 39.62008087655642
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6155",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6155 accessories"
+ }
+ },
+ "system": "drone system 6155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40459200326382,
+ 39.407712532851164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6156",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6156 accessories"
+ }
+ },
+ "system": "drone system 6156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96132133824815,
+ 38.564193124731275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6157",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6157 accessories"
+ }
+ },
+ "system": "drone system 6157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75710250224199,
+ 38.29855771209639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6158",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6158 accessories"
+ }
+ },
+ "system": "drone system 6158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44728770600608,
+ 38.863239032932206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6159",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6159 accessories"
+ }
+ },
+ "system": "drone system 6159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88807069473181,
+ 39.205970710437875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6160",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6160 accessories"
+ }
+ },
+ "system": "drone system 6160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69340931559854,
+ 38.5735685471599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6161",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6161 accessories"
+ }
+ },
+ "system": "drone system 6161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55210570693507,
+ 38.42852216372534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6162",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6162 accessories"
+ }
+ },
+ "system": "drone system 6162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32287499134604,
+ 38.222429739591334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6163",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6163 accessories"
+ }
+ },
+ "system": "drone system 6163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72863427635414,
+ 38.84830940713406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6164",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6164 accessories"
+ }
+ },
+ "system": "drone system 6164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57454930446916,
+ 39.51984596477355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6165",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6165 accessories"
+ }
+ },
+ "system": "drone system 6165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44863665159849,
+ 39.4936391458815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6166",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6166 accessories"
+ }
+ },
+ "system": "drone system 6166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37211131099907,
+ 38.16421052159823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6167",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6167 accessories"
+ }
+ },
+ "system": "drone system 6167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48855371773178,
+ 39.534165894799514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6168",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6168 accessories"
+ }
+ },
+ "system": "drone system 6168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21720512440598,
+ 39.14110918286494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6169",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6169 accessories"
+ }
+ },
+ "system": "drone system 6169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90082011070652,
+ 38.725945591229205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6170",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6170 accessories"
+ }
+ },
+ "system": "drone system 6170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07074534023967,
+ 39.65384373046978
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6171",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6171 accessories"
+ }
+ },
+ "system": "drone system 6171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38974854204197,
+ 38.40534114286258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6172",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6172 accessories"
+ }
+ },
+ "system": "drone system 6172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81475186624782,
+ 39.2260488947472
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6173",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6173 accessories"
+ }
+ },
+ "system": "drone system 6173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92384195385844,
+ 39.68945659626596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6174",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6174 accessories"
+ }
+ },
+ "system": "drone system 6174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44677771897267,
+ 39.36653850769053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6175",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6175 accessories"
+ }
+ },
+ "system": "drone system 6175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49676571608805,
+ 38.1741053650493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6176",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6176 accessories"
+ }
+ },
+ "system": "drone system 6176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05259427327982,
+ 38.66022427078177
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6177",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6177 accessories"
+ }
+ },
+ "system": "drone system 6177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6792262157616,
+ 38.39178554487555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6178",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6178 accessories"
+ }
+ },
+ "system": "drone system 6178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41487087017468,
+ 39.5867490278858
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6179 accessories"
+ }
+ },
+ "system": "drone system 6179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13763512178902,
+ 39.603987289097645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6180",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6180 accessories"
+ }
+ },
+ "system": "drone system 6180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0286411676283,
+ 39.30372079157077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6181",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6181 accessories"
+ }
+ },
+ "system": "drone system 6181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00900986102552,
+ 38.36252882761172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6182",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6182 accessories"
+ }
+ },
+ "system": "drone system 6182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38534743258644,
+ 39.22616552952309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6183",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6183 accessories"
+ }
+ },
+ "system": "drone system 6183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7361307891019,
+ 39.66285200527332
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6184",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6184 accessories"
+ }
+ },
+ "system": "drone system 6184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49338955649318,
+ 38.66676961553866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6185",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6185 accessories"
+ }
+ },
+ "system": "drone system 6185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42958247970368,
+ 38.54498699594396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6186",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6186 accessories"
+ }
+ },
+ "system": "drone system 6186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09871092415045,
+ 38.68321458135542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6187",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6187 accessories"
+ }
+ },
+ "system": "drone system 6187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63396322525965,
+ 38.7346595085314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6188",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6188 accessories"
+ }
+ },
+ "system": "drone system 6188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35895422956625,
+ 39.55887489673903
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6189",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6189 accessories"
+ }
+ },
+ "system": "drone system 6189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4845770357754,
+ 38.34277949052183
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6190 accessories"
+ }
+ },
+ "system": "drone system 6190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9219399237272,
+ 38.79144612707776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6191",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6191 accessories"
+ }
+ },
+ "system": "drone system 6191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83996609966417,
+ 39.21024801884824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6192",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6192 accessories"
+ }
+ },
+ "system": "drone system 6192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5341202278849,
+ 38.915744761074734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6193",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6193 accessories"
+ }
+ },
+ "system": "drone system 6193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24991192950685,
+ 38.937113649424255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6194",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6194 accessories"
+ }
+ },
+ "system": "drone system 6194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39627358490416,
+ 39.251242701211325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6195",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6195 accessories"
+ }
+ },
+ "system": "drone system 6195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92257676957982,
+ 38.313530023029884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6196",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6196 accessories"
+ }
+ },
+ "system": "drone system 6196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7600990946939,
+ 38.72404069484775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6197",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6197 accessories"
+ }
+ },
+ "system": "drone system 6197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33085590240684,
+ 38.1143760891184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6198",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6198 accessories"
+ }
+ },
+ "system": "drone system 6198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81880061959667,
+ 39.0307102289079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6199",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6199 accessories"
+ }
+ },
+ "system": "drone system 6199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27149098371774,
+ 39.41970301622486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6200",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6200 accessories"
+ }
+ },
+ "system": "drone system 6200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91171159690325,
+ 38.78837595512796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6201",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6201 accessories"
+ }
+ },
+ "system": "drone system 6201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9768034404919,
+ 38.47742167266107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6202",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6202 accessories"
+ }
+ },
+ "system": "drone system 6202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83861479733402,
+ 38.656659825955614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6203",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6203 accessories"
+ }
+ },
+ "system": "drone system 6203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21627050552992,
+ 39.096299979116814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6204",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6204 accessories"
+ }
+ },
+ "system": "drone system 6204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3841856229017,
+ 38.90344472576185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6205",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6205 accessories"
+ }
+ },
+ "system": "drone system 6205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72265794082858,
+ 38.875513110162586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6206",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6206 accessories"
+ }
+ },
+ "system": "drone system 6206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19631955701348,
+ 39.34561040805436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6207",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6207 accessories"
+ }
+ },
+ "system": "drone system 6207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97341091127872,
+ 38.20413430978811
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6208",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6208 accessories"
+ }
+ },
+ "system": "drone system 6208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25746928035431,
+ 38.611304228780554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6209",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6209 accessories"
+ }
+ },
+ "system": "drone system 6209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85850940547164,
+ 39.57682334981738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6210",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6210 accessories"
+ }
+ },
+ "system": "drone system 6210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3374982476955,
+ 38.9959882782841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6211",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6211 accessories"
+ }
+ },
+ "system": "drone system 6211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86434430630258,
+ 39.37220822056727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6212",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6212 accessories"
+ }
+ },
+ "system": "drone system 6212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46706004720753,
+ 39.23149155983805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6213",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6213 accessories"
+ }
+ },
+ "system": "drone system 6213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67457079792538,
+ 38.93593484366781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6214",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6214 accessories"
+ }
+ },
+ "system": "drone system 6214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73923182393062,
+ 39.43687936398264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6215 accessories"
+ }
+ },
+ "system": "drone system 6215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26605007441096,
+ 38.287764830559894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6216",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6216 accessories"
+ }
+ },
+ "system": "drone system 6216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33450774604242,
+ 38.74239311146862
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6217",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6217 accessories"
+ }
+ },
+ "system": "drone system 6217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85482345148264,
+ 38.3427901065404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6218",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6218 accessories"
+ }
+ },
+ "system": "drone system 6218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39089200614929,
+ 38.50855887647775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6219",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6219 accessories"
+ }
+ },
+ "system": "drone system 6219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65913723365031,
+ 39.23294369723286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6220",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6220 accessories"
+ }
+ },
+ "system": "drone system 6220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08411294722997,
+ 39.23591666269083
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6221",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6221 accessories"
+ }
+ },
+ "system": "drone system 6221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75297193804441,
+ 39.19343514158387
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6222",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6222 accessories"
+ }
+ },
+ "system": "drone system 6222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61953003367232,
+ 38.958239873908674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6223",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6223 accessories"
+ }
+ },
+ "system": "drone system 6223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01949396567983,
+ 38.14805189420855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6224",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6224 accessories"
+ }
+ },
+ "system": "drone system 6224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93458568627217,
+ 38.38265962255336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6225 accessories"
+ }
+ },
+ "system": "drone system 6225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75279210764856,
+ 39.346389383083064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6226",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6226 accessories"
+ }
+ },
+ "system": "drone system 6226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19699286264947,
+ 38.51930708505727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6227",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6227 accessories"
+ }
+ },
+ "system": "drone system 6227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49180651651486,
+ 39.241571542139944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6228",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6228 accessories"
+ }
+ },
+ "system": "drone system 6228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8189725668671,
+ 38.763897785026586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6229",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6229 accessories"
+ }
+ },
+ "system": "drone system 6229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74843086007543,
+ 39.617441872611636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6230",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6230 accessories"
+ }
+ },
+ "system": "drone system 6230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55663023724665,
+ 38.359325708896705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6231",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6231 accessories"
+ }
+ },
+ "system": "drone system 6231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42009018264095,
+ 38.3187314104842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6232",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6232 accessories"
+ }
+ },
+ "system": "drone system 6232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86394482822739,
+ 38.46024598628064
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6233",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6233 accessories"
+ }
+ },
+ "system": "drone system 6233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53677660061031,
+ 38.307587817317845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6234",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6234 accessories"
+ }
+ },
+ "system": "drone system 6234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75134324306653,
+ 39.384766592341464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6235",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6235 accessories"
+ }
+ },
+ "system": "drone system 6235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15718699814401,
+ 38.983149419692076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6236",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6236 accessories"
+ }
+ },
+ "system": "drone system 6236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.984923193377,
+ 39.062509397138015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6237",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6237 accessories"
+ }
+ },
+ "system": "drone system 6237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81154866817408,
+ 39.66822787082163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6238",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6238 accessories"
+ }
+ },
+ "system": "drone system 6238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95662651168476,
+ 39.22013947609503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6239 accessories"
+ }
+ },
+ "system": "drone system 6239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74226630637237,
+ 39.537944552651105
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6240",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6240 accessories"
+ }
+ },
+ "system": "drone system 6240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17954685357581,
+ 38.416989549408655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6241",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6241 accessories"
+ }
+ },
+ "system": "drone system 6241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70923291698395,
+ 38.32162642060674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6242",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6242 accessories"
+ }
+ },
+ "system": "drone system 6242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51830788874979,
+ 39.50075349966031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6243",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6243 accessories"
+ }
+ },
+ "system": "drone system 6243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76273503929085,
+ 38.86514837216499
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6244",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6244 accessories"
+ }
+ },
+ "system": "drone system 6244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8510237758442,
+ 38.12983492681677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6245",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6245 accessories"
+ }
+ },
+ "system": "drone system 6245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20197577106474,
+ 38.60216623186884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6246",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6246 accessories"
+ }
+ },
+ "system": "drone system 6246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54257515480994,
+ 38.96451961899183
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6247",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6247 accessories"
+ }
+ },
+ "system": "drone system 6247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24970423323371,
+ 39.1660891345104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6248",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6248 accessories"
+ }
+ },
+ "system": "drone system 6248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94385397436889,
+ 38.6066977081253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6249",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6249 accessories"
+ }
+ },
+ "system": "drone system 6249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50904470286683,
+ 38.9205121852786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6250",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6250 accessories"
+ }
+ },
+ "system": "drone system 6250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91784355969381,
+ 38.93026012453621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6251",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6251 accessories"
+ }
+ },
+ "system": "drone system 6251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05027468474358,
+ 38.65317078718576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6252",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6252 accessories"
+ }
+ },
+ "system": "drone system 6252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15144289708428,
+ 38.94784394799421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6253",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6253 accessories"
+ }
+ },
+ "system": "drone system 6253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62026649192892,
+ 38.1936147406432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6254",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6254 accessories"
+ }
+ },
+ "system": "drone system 6254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45407557631319,
+ 38.125210022684406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6255",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6255 accessories"
+ }
+ },
+ "system": "drone system 6255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29488938399464,
+ 38.619186269658144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6256",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6256 accessories"
+ }
+ },
+ "system": "drone system 6256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3010432513548,
+ 38.711283414420905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6257",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6257 accessories"
+ }
+ },
+ "system": "drone system 6257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86181653205415,
+ 39.562759006206605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6258",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6258 accessories"
+ }
+ },
+ "system": "drone system 6258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6925980660082,
+ 39.71840175402121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6259",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6259 accessories"
+ }
+ },
+ "system": "drone system 6259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79406207696661,
+ 39.30161769207053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6260",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6260 accessories"
+ }
+ },
+ "system": "drone system 6260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23595623005768,
+ 38.68168061270246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6261",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6261 accessories"
+ }
+ },
+ "system": "drone system 6261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38333852269092,
+ 38.56527355330084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6262",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6262 accessories"
+ }
+ },
+ "system": "drone system 6262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3497959451611,
+ 39.03056466922523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6263",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6263 accessories"
+ }
+ },
+ "system": "drone system 6263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47889068986706,
+ 38.767754179459295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6264",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6264 accessories"
+ }
+ },
+ "system": "drone system 6264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57435275790854,
+ 39.16372702545705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6265",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6265 accessories"
+ }
+ },
+ "system": "drone system 6265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31112103067463,
+ 39.10487296486184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6266",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6266 accessories"
+ }
+ },
+ "system": "drone system 6266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41570738202267,
+ 38.44027493282586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6267",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6267 accessories"
+ }
+ },
+ "system": "drone system 6267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62412777458546,
+ 38.700445253879394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6268",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6268 accessories"
+ }
+ },
+ "system": "drone system 6268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23782341450035,
+ 39.1433152211807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6269",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6269 accessories"
+ }
+ },
+ "system": "drone system 6269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55536165236254,
+ 39.26394874303926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6270",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6270 accessories"
+ }
+ },
+ "system": "drone system 6270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12447245602634,
+ 39.06751078516826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6271",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6271 accessories"
+ }
+ },
+ "system": "drone system 6271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56299673635104,
+ 38.793343409263514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6272",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6272 accessories"
+ }
+ },
+ "system": "drone system 6272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18195571944108,
+ 38.74213599320597
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6273",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6273 accessories"
+ }
+ },
+ "system": "drone system 6273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.910843411194,
+ 38.89652853831347
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6274",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6274 accessories"
+ }
+ },
+ "system": "drone system 6274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72671499501193,
+ 38.43823522009501
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6275",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6275 accessories"
+ }
+ },
+ "system": "drone system 6275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86403682158662,
+ 38.953081251538215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6276",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6276 accessories"
+ }
+ },
+ "system": "drone system 6276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31838576125679,
+ 38.2234333933542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6277",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6277 accessories"
+ }
+ },
+ "system": "drone system 6277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41742758663614,
+ 39.52179273112933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6278",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6278 accessories"
+ }
+ },
+ "system": "drone system 6278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38887297841858,
+ 38.37232223261576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6279",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6279 accessories"
+ }
+ },
+ "system": "drone system 6279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86943444336299,
+ 38.67164842547357
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6280",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6280 accessories"
+ }
+ },
+ "system": "drone system 6280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84479271923041,
+ 38.53774832939614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6281",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6281 accessories"
+ }
+ },
+ "system": "drone system 6281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81264333972128,
+ 38.25807916000328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6282",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6282 accessories"
+ }
+ },
+ "system": "drone system 6282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24147447125101,
+ 38.98569407619644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6283",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6283 accessories"
+ }
+ },
+ "system": "drone system 6283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18535088522174,
+ 38.77853201586769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6284",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6284 accessories"
+ }
+ },
+ "system": "drone system 6284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9121145103171,
+ 38.459852160649874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6285",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6285 accessories"
+ }
+ },
+ "system": "drone system 6285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70888603035294,
+ 38.56827952184377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6286",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6286 accessories"
+ }
+ },
+ "system": "drone system 6286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12809748188769,
+ 38.429613792254955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6287",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6287 accessories"
+ }
+ },
+ "system": "drone system 6287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5385345395042,
+ 39.44416778852429
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6288",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6288 accessories"
+ }
+ },
+ "system": "drone system 6288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56880755909921,
+ 39.426890928543465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6289",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6289 accessories"
+ }
+ },
+ "system": "drone system 6289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24869068304517,
+ 38.750020676058945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6290",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6290 accessories"
+ }
+ },
+ "system": "drone system 6290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72814972777412,
+ 39.69156513099627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6291",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6291 accessories"
+ }
+ },
+ "system": "drone system 6291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7086144619403,
+ 38.09511992565629
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6292",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6292 accessories"
+ }
+ },
+ "system": "drone system 6292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15452401347585,
+ 38.87041757897408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6293",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6293 accessories"
+ }
+ },
+ "system": "drone system 6293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64896771556468,
+ 38.343901355096705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6294",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6294 accessories"
+ }
+ },
+ "system": "drone system 6294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14231077142095,
+ 39.72621105850317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6295",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6295 accessories"
+ }
+ },
+ "system": "drone system 6295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66479820911186,
+ 39.30012824038135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6296",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6296 accessories"
+ }
+ },
+ "system": "drone system 6296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50318989120595,
+ 38.45206026676543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6297",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6297 accessories"
+ }
+ },
+ "system": "drone system 6297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57744384853602,
+ 39.61365291539778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6298",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6298 accessories"
+ }
+ },
+ "system": "drone system 6298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74141495201825,
+ 39.062459167859785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6299",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6299 accessories"
+ }
+ },
+ "system": "drone system 6299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49560074862464,
+ 39.303858459768115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6300",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6300 accessories"
+ }
+ },
+ "system": "drone system 6300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36526464832303,
+ 39.35587643428006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6301",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6301 accessories"
+ }
+ },
+ "system": "drone system 6301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60464593097677,
+ 39.23644580616733
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6302",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6302 accessories"
+ }
+ },
+ "system": "drone system 6302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26918008510872,
+ 39.548238190392844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6303",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6303 accessories"
+ }
+ },
+ "system": "drone system 6303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3390715119917,
+ 39.10290245554722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6304",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6304 accessories"
+ }
+ },
+ "system": "drone system 6304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61627270467991,
+ 39.329337912186446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6305",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6305 accessories"
+ }
+ },
+ "system": "drone system 6305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07104913965082,
+ 39.51485947241618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6306",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6306 accessories"
+ }
+ },
+ "system": "drone system 6306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50982677180087,
+ 39.096298033079364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6307",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6307 accessories"
+ }
+ },
+ "system": "drone system 6307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69933475598965,
+ 38.987306691329536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6308",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6308 accessories"
+ }
+ },
+ "system": "drone system 6308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57206998750384,
+ 38.565479037004096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6309",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6309 accessories"
+ }
+ },
+ "system": "drone system 6309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31959685161387,
+ 39.47015489436867
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6310",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6310 accessories"
+ }
+ },
+ "system": "drone system 6310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65012515427914,
+ 39.22025746652086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6311",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6311 accessories"
+ }
+ },
+ "system": "drone system 6311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17142145979562,
+ 39.306940757186844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6312",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6312 accessories"
+ }
+ },
+ "system": "drone system 6312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65387996034084,
+ 39.48018044088303
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6313 accessories"
+ }
+ },
+ "system": "drone system 6313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62302261622932,
+ 38.34879850252039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6314",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6314 accessories"
+ }
+ },
+ "system": "drone system 6314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4392411967471,
+ 38.26481435107818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6315",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6315 accessories"
+ }
+ },
+ "system": "drone system 6315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80580123372425,
+ 39.02349499104315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6316",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6316 accessories"
+ }
+ },
+ "system": "drone system 6316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60494060100739,
+ 39.582552744547044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6317",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6317 accessories"
+ }
+ },
+ "system": "drone system 6317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22490907027597,
+ 39.071313890606376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6318",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6318 accessories"
+ }
+ },
+ "system": "drone system 6318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99380886689885,
+ 38.12962149373278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6319",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6319 accessories"
+ }
+ },
+ "system": "drone system 6319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0648922330419,
+ 38.27263732889534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6320",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6320 accessories"
+ }
+ },
+ "system": "drone system 6320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61283829376485,
+ 38.80578321287241
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6321",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6321 accessories"
+ }
+ },
+ "system": "drone system 6321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89539580834864,
+ 38.0386931641066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6322",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6322 accessories"
+ }
+ },
+ "system": "drone system 6322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95956185626994,
+ 39.60078317344448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6323",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6323 accessories"
+ }
+ },
+ "system": "drone system 6323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31656573600728,
+ 39.49905485890155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6324",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6324 accessories"
+ }
+ },
+ "system": "drone system 6324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31074487225952,
+ 38.242998833405935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6325",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6325 accessories"
+ }
+ },
+ "system": "drone system 6325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17318280636283,
+ 39.04342307636045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6326",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6326 accessories"
+ }
+ },
+ "system": "drone system 6326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24249643648047,
+ 38.43715248929663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6327",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6327 accessories"
+ }
+ },
+ "system": "drone system 6327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73738541130326,
+ 38.82544035328441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6328",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6328 accessories"
+ }
+ },
+ "system": "drone system 6328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6939040425664,
+ 38.42496249521895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6329",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6329 accessories"
+ }
+ },
+ "system": "drone system 6329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45854920343135,
+ 38.656054248609344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6330",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6330 accessories"
+ }
+ },
+ "system": "drone system 6330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95487543943977,
+ 38.68533851891832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6331",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6331 accessories"
+ }
+ },
+ "system": "drone system 6331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48399264028274,
+ 39.03731508667253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6332",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6332 accessories"
+ }
+ },
+ "system": "drone system 6332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78203334996115,
+ 38.110903146847285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6333",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6333 accessories"
+ }
+ },
+ "system": "drone system 6333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80045919382043,
+ 38.71091429142094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6334",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6334 accessories"
+ }
+ },
+ "system": "drone system 6334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5514565943325,
+ 39.51845163821704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6335",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6335 accessories"
+ }
+ },
+ "system": "drone system 6335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56297740361893,
+ 39.02431211538822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6336",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6336 accessories"
+ }
+ },
+ "system": "drone system 6336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54886827327238,
+ 39.06183421400481
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6337",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6337 accessories"
+ }
+ },
+ "system": "drone system 6337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39336070359884,
+ 38.991127731345365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6338",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6338 accessories"
+ }
+ },
+ "system": "drone system 6338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27490984939587,
+ 38.5001736619663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6339",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6339 accessories"
+ }
+ },
+ "system": "drone system 6339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10079914354075,
+ 39.67354331709129
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6340",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6340 accessories"
+ }
+ },
+ "system": "drone system 6340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72127088766383,
+ 38.41078496813781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6341",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6341 accessories"
+ }
+ },
+ "system": "drone system 6341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76680026264633,
+ 39.159041622044306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6342",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6342 accessories"
+ }
+ },
+ "system": "drone system 6342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40905542719243,
+ 38.60744897784368
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6343",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6343 accessories"
+ }
+ },
+ "system": "drone system 6343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08537293305328,
+ 38.0394791102644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6344",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6344 accessories"
+ }
+ },
+ "system": "drone system 6344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20585249811718,
+ 38.943400463182414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6345",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6345 accessories"
+ }
+ },
+ "system": "drone system 6345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21615090243908,
+ 38.563441066468485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6346",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6346 accessories"
+ }
+ },
+ "system": "drone system 6346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25918812092254,
+ 39.74921408562334
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6347",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6347 accessories"
+ }
+ },
+ "system": "drone system 6347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62642054510523,
+ 39.36641249322056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6348",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6348 accessories"
+ }
+ },
+ "system": "drone system 6348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42514910854948,
+ 39.20526225508203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6349",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6349 accessories"
+ }
+ },
+ "system": "drone system 6349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32426759549088,
+ 39.008460592050874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6350",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6350 accessories"
+ }
+ },
+ "system": "drone system 6350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46942764071309,
+ 38.38422304542537
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6351",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6351 accessories"
+ }
+ },
+ "system": "drone system 6351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02000117042502,
+ 38.97553171732413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6352",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6352 accessories"
+ }
+ },
+ "system": "drone system 6352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07434800709177,
+ 39.546343608225335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6353",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6353 accessories"
+ }
+ },
+ "system": "drone system 6353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3846839129547,
+ 39.51629225814804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6354",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6354 accessories"
+ }
+ },
+ "system": "drone system 6354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40862651308501,
+ 38.86653937469264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6355",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6355 accessories"
+ }
+ },
+ "system": "drone system 6355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59278163388933,
+ 39.14966563629972
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6356",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6356 accessories"
+ }
+ },
+ "system": "drone system 6356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48930593570188,
+ 38.380015192187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6357",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6357 accessories"
+ }
+ },
+ "system": "drone system 6357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04789324433473,
+ 38.134259805561626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6358 accessories"
+ }
+ },
+ "system": "drone system 6358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36678753170123,
+ 38.56293728284775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6359",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6359 accessories"
+ }
+ },
+ "system": "drone system 6359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5984945892654,
+ 38.339815455198874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6360",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6360 accessories"
+ }
+ },
+ "system": "drone system 6360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51327411345187,
+ 38.48224836536008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6361",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6361 accessories"
+ }
+ },
+ "system": "drone system 6361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33662822923795,
+ 39.359131457101135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6362",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6362 accessories"
+ }
+ },
+ "system": "drone system 6362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42560020399732,
+ 38.598134487544364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6363",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6363 accessories"
+ }
+ },
+ "system": "drone system 6363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5953316985295,
+ 39.598027582777604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6364",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6364 accessories"
+ }
+ },
+ "system": "drone system 6364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65072620066803,
+ 38.46462634398253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6365",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6365 accessories"
+ }
+ },
+ "system": "drone system 6365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96140221372738,
+ 38.89130693885289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6366",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6366 accessories"
+ }
+ },
+ "system": "drone system 6366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98000682631344,
+ 39.15820440754905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6367",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6367 accessories"
+ }
+ },
+ "system": "drone system 6367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7277155773676,
+ 38.53043485359145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6368",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6368 accessories"
+ }
+ },
+ "system": "drone system 6368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13832403560268,
+ 38.09400040522689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6369",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6369 accessories"
+ }
+ },
+ "system": "drone system 6369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73298723922522,
+ 39.29198175646804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6370 accessories"
+ }
+ },
+ "system": "drone system 6370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45948707626415,
+ 39.30147707528589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6371",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6371 accessories"
+ }
+ },
+ "system": "drone system 6371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48672887380175,
+ 38.32134763446962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6372",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6372 accessories"
+ }
+ },
+ "system": "drone system 6372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29280151317397,
+ 38.88952164989949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6373",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6373 accessories"
+ }
+ },
+ "system": "drone system 6373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41944794564098,
+ 38.228465781501754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6374",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6374 accessories"
+ }
+ },
+ "system": "drone system 6374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78240739129349,
+ 38.517669246920796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6375",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6375 accessories"
+ }
+ },
+ "system": "drone system 6375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99514959516,
+ 38.51775009770412
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6376",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6376 accessories"
+ }
+ },
+ "system": "drone system 6376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51286082001394,
+ 38.917631340806345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6377",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6377 accessories"
+ }
+ },
+ "system": "drone system 6377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56460372520179,
+ 39.06038120113529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6378",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6378 accessories"
+ }
+ },
+ "system": "drone system 6378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6147138508317,
+ 38.82365970453769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6379",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6379 accessories"
+ }
+ },
+ "system": "drone system 6379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05596793470097,
+ 39.27043909506302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6380",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6380 accessories"
+ }
+ },
+ "system": "drone system 6380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85843021920034,
+ 38.99544546902204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6381",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6381 accessories"
+ }
+ },
+ "system": "drone system 6381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21683033783893,
+ 38.027881390935754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6382",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6382 accessories"
+ }
+ },
+ "system": "drone system 6382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59697553172018,
+ 39.216007266786846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6383",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6383 accessories"
+ }
+ },
+ "system": "drone system 6383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55033083110641,
+ 39.611520165395824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6384",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6384 accessories"
+ }
+ },
+ "system": "drone system 6384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17495033825229,
+ 39.33041687118022
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6385",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6385 accessories"
+ }
+ },
+ "system": "drone system 6385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46468498690594,
+ 38.37143313187792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6386",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6386 accessories"
+ }
+ },
+ "system": "drone system 6386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02872461388478,
+ 38.524130085736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6387",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6387 accessories"
+ }
+ },
+ "system": "drone system 6387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17059517005406,
+ 38.86224723435363
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6388",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6388 accessories"
+ }
+ },
+ "system": "drone system 6388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08437903977756,
+ 38.286188015652534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6389",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6389 accessories"
+ }
+ },
+ "system": "drone system 6389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63188218231997,
+ 38.53154520059745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6390",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6390 accessories"
+ }
+ },
+ "system": "drone system 6390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58779162941732,
+ 38.77015537695698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6391",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6391 accessories"
+ }
+ },
+ "system": "drone system 6391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02937512468344,
+ 38.84123359493073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6392",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6392 accessories"
+ }
+ },
+ "system": "drone system 6392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50754577813963,
+ 38.73429005756763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6393",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6393 accessories"
+ }
+ },
+ "system": "drone system 6393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51724021152086,
+ 38.77889265439917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6394",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6394 accessories"
+ }
+ },
+ "system": "drone system 6394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95847612804124,
+ 39.50887401423486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6395",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6395 accessories"
+ }
+ },
+ "system": "drone system 6395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30194560116237,
+ 39.156916106340695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6396",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6396 accessories"
+ }
+ },
+ "system": "drone system 6396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72476700401167,
+ 39.55671266239703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6397",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6397 accessories"
+ }
+ },
+ "system": "drone system 6397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94299490221904,
+ 39.76583399749889
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6398",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6398 accessories"
+ }
+ },
+ "system": "drone system 6398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52159667980075,
+ 38.95265630047826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6399",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6399 accessories"
+ }
+ },
+ "system": "drone system 6399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06554098032872,
+ 39.32099940190604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6400",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6400 accessories"
+ }
+ },
+ "system": "drone system 6400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95853603594611,
+ 39.03871978662494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6401",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6401 accessories"
+ }
+ },
+ "system": "drone system 6401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69647160448858,
+ 38.33623342036179
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6402",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6402 accessories"
+ }
+ },
+ "system": "drone system 6402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43939061045322,
+ 39.00450098424056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6403",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6403 accessories"
+ }
+ },
+ "system": "drone system 6403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96129546242837,
+ 39.5617060791783
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6404",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6404 accessories"
+ }
+ },
+ "system": "drone system 6404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54339508357211,
+ 39.03272334510839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6405",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6405 accessories"
+ }
+ },
+ "system": "drone system 6405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65729761961065,
+ 39.11094256215441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6406",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6406 accessories"
+ }
+ },
+ "system": "drone system 6406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91850898604723,
+ 39.731390557627286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6407",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6407 accessories"
+ }
+ },
+ "system": "drone system 6407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79596050398904,
+ 39.138602013786375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6408",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6408 accessories"
+ }
+ },
+ "system": "drone system 6408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92294395579393,
+ 38.811479548116644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6409",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6409 accessories"
+ }
+ },
+ "system": "drone system 6409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7192994131607,
+ 38.49145917261299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6410",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6410 accessories"
+ }
+ },
+ "system": "drone system 6410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0987889184968,
+ 39.662181244184225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6411",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6411 accessories"
+ }
+ },
+ "system": "drone system 6411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48041703557712,
+ 39.48747364824114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6412",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6412 accessories"
+ }
+ },
+ "system": "drone system 6412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7589471435639,
+ 38.68660474130162
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6413",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6413 accessories"
+ }
+ },
+ "system": "drone system 6413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55834512961205,
+ 39.56659467846788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6414",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6414 accessories"
+ }
+ },
+ "system": "drone system 6414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48297137711694,
+ 38.90967938766974
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6415",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6415 accessories"
+ }
+ },
+ "system": "drone system 6415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1821219214994,
+ 39.719099801529566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6416",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6416 accessories"
+ }
+ },
+ "system": "drone system 6416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7761991105189,
+ 39.081537579341905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6417",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6417 accessories"
+ }
+ },
+ "system": "drone system 6417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.090954200482,
+ 38.15309260055459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6418",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6418 accessories"
+ }
+ },
+ "system": "drone system 6418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28230197701794,
+ 39.57767692655683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6419",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6419 accessories"
+ }
+ },
+ "system": "drone system 6419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91987125165146,
+ 38.58958260893166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6420",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6420 accessories"
+ }
+ },
+ "system": "drone system 6420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72827080142335,
+ 38.601489086144795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6421",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6421 accessories"
+ }
+ },
+ "system": "drone system 6421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30774300717883,
+ 38.13112298627671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6422",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6422 accessories"
+ }
+ },
+ "system": "drone system 6422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08880016376486,
+ 38.74826033673908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6423",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6423 accessories"
+ }
+ },
+ "system": "drone system 6423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74320266745451,
+ 38.12433565278637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6424",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6424 accessories"
+ }
+ },
+ "system": "drone system 6424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32322860532257,
+ 38.08243356517016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6425",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6425 accessories"
+ }
+ },
+ "system": "drone system 6425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88408780613639,
+ 39.35499334670724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6426",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6426 accessories"
+ }
+ },
+ "system": "drone system 6426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9465161435679,
+ 38.65710026974302
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6427",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6427 accessories"
+ }
+ },
+ "system": "drone system 6427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71095887116684,
+ 38.72747895379846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6428",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6428 accessories"
+ }
+ },
+ "system": "drone system 6428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46917576331217,
+ 39.19948543088544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6429",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6429 accessories"
+ }
+ },
+ "system": "drone system 6429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4180380783459,
+ 38.39028024537468
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6430",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6430 accessories"
+ }
+ },
+ "system": "drone system 6430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34320706230577,
+ 38.59090465296506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6431",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6431 accessories"
+ }
+ },
+ "system": "drone system 6431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9191692009809,
+ 38.58893076453011
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6432",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6432 accessories"
+ }
+ },
+ "system": "drone system 6432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7414474995452,
+ 38.79426819826119
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6433",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6433 accessories"
+ }
+ },
+ "system": "drone system 6433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71355502782178,
+ 38.75996976515694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6434",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6434 accessories"
+ }
+ },
+ "system": "drone system 6434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83352051896014,
+ 38.73346002497097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6435",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6435 accessories"
+ }
+ },
+ "system": "drone system 6435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57216729528132,
+ 38.77771613489852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6436",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6436 accessories"
+ }
+ },
+ "system": "drone system 6436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82498005694147,
+ 39.10290367791505
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6437",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6437 accessories"
+ }
+ },
+ "system": "drone system 6437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09862351198484,
+ 38.31002252226493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6438",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6438 accessories"
+ }
+ },
+ "system": "drone system 6438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83483095186293,
+ 39.32163393395512
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6439",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6439 accessories"
+ }
+ },
+ "system": "drone system 6439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62470083192153,
+ 38.82591171388207
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6440",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6440 accessories"
+ }
+ },
+ "system": "drone system 6440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56041732043971,
+ 39.60364629742479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6441",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6441 accessories"
+ }
+ },
+ "system": "drone system 6441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30671900502202,
+ 38.42330547400093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6442",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6442 accessories"
+ }
+ },
+ "system": "drone system 6442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19893660858483,
+ 39.09954603064626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6443",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6443 accessories"
+ }
+ },
+ "system": "drone system 6443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57699960785425,
+ 38.2284634450231
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6444",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6444 accessories"
+ }
+ },
+ "system": "drone system 6444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49793313281457,
+ 39.51968810820652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6445",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6445 accessories"
+ }
+ },
+ "system": "drone system 6445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91896205932979,
+ 38.70717630836612
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6446",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6446 accessories"
+ }
+ },
+ "system": "drone system 6446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90275401993975,
+ 39.378159726842846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6447",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6447 accessories"
+ }
+ },
+ "system": "drone system 6447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28517079447866,
+ 38.72196172510211
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6448",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6448 accessories"
+ }
+ },
+ "system": "drone system 6448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.634466019135,
+ 39.421873904649054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6449",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6449 accessories"
+ }
+ },
+ "system": "drone system 6449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84424268709887,
+ 38.83531910944144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6450",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6450 accessories"
+ }
+ },
+ "system": "drone system 6450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30352903831144,
+ 39.18259422997416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6451",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6451 accessories"
+ }
+ },
+ "system": "drone system 6451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1894280291373,
+ 38.28831965723537
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6452",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6452 accessories"
+ }
+ },
+ "system": "drone system 6452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22625999466334,
+ 38.13788874844484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6453",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6453 accessories"
+ }
+ },
+ "system": "drone system 6453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16052917871883,
+ 39.75474381482174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6454",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6454 accessories"
+ }
+ },
+ "system": "drone system 6454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23694975008172,
+ 39.01596395226498
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6455",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6455 accessories"
+ }
+ },
+ "system": "drone system 6455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6260914447101,
+ 39.50249084195249
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6456",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6456 accessories"
+ }
+ },
+ "system": "drone system 6456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43932766817808,
+ 38.42954507050943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6457",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6457 accessories"
+ }
+ },
+ "system": "drone system 6457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49982122754837,
+ 38.284793677975905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6458",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6458 accessories"
+ }
+ },
+ "system": "drone system 6458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8367205098521,
+ 39.71164370214906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6459",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6459 accessories"
+ }
+ },
+ "system": "drone system 6459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18809792959685,
+ 38.62433494136325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6460",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6460 accessories"
+ }
+ },
+ "system": "drone system 6460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61906023906987,
+ 38.42576653165108
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6461",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6461 accessories"
+ }
+ },
+ "system": "drone system 6461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27901042794166,
+ 39.38785949691484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6462",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6462 accessories"
+ }
+ },
+ "system": "drone system 6462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77511249064732,
+ 38.7640583722381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6463",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6463 accessories"
+ }
+ },
+ "system": "drone system 6463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56190288951592,
+ 38.204340686512566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6464",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6464 accessories"
+ }
+ },
+ "system": "drone system 6464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5029099998084,
+ 39.58607988403476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6465",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6465 accessories"
+ }
+ },
+ "system": "drone system 6465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63734781481313,
+ 39.056721697412584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6466",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6466 accessories"
+ }
+ },
+ "system": "drone system 6466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50891591397198,
+ 38.254295536874196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6467",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6467 accessories"
+ }
+ },
+ "system": "drone system 6467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64511640155527,
+ 38.60755738740393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6468",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6468 accessories"
+ }
+ },
+ "system": "drone system 6468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29712399343546,
+ 39.12145072651038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6469",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6469 accessories"
+ }
+ },
+ "system": "drone system 6469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61753888860889,
+ 38.60154373645602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6470",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6470 accessories"
+ }
+ },
+ "system": "drone system 6470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36616765813942,
+ 38.59060902818814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6471",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6471 accessories"
+ }
+ },
+ "system": "drone system 6471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38119950104395,
+ 38.41876086555335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6472",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6472 accessories"
+ }
+ },
+ "system": "drone system 6472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62183407449018,
+ 39.32982562779398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6473",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6473 accessories"
+ }
+ },
+ "system": "drone system 6473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31082806146837,
+ 39.14446946492253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6474",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6474 accessories"
+ }
+ },
+ "system": "drone system 6474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27750129094555,
+ 38.896536254915546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6475",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6475 accessories"
+ }
+ },
+ "system": "drone system 6475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70016122848767,
+ 38.88092882939267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6476",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6476 accessories"
+ }
+ },
+ "system": "drone system 6476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.900912755911,
+ 39.47709372051081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6477",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6477 accessories"
+ }
+ },
+ "system": "drone system 6477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4908866881844,
+ 38.3393966258062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6478",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6478 accessories"
+ }
+ },
+ "system": "drone system 6478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06332668714685,
+ 38.068213274950516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6479",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6479 accessories"
+ }
+ },
+ "system": "drone system 6479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63992602022068,
+ 39.6036054743789
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6480",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6480 accessories"
+ }
+ },
+ "system": "drone system 6480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45407139042254,
+ 39.10034975070166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6481",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6481 accessories"
+ }
+ },
+ "system": "drone system 6481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00993799882903,
+ 39.293530428668134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6482",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6482 accessories"
+ }
+ },
+ "system": "drone system 6482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82653547234919,
+ 39.26708056991307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6483",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6483 accessories"
+ }
+ },
+ "system": "drone system 6483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83146781786806,
+ 39.765505485713284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6484",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6484 accessories"
+ }
+ },
+ "system": "drone system 6484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16352628434298,
+ 38.429483938798285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6485",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6485 accessories"
+ }
+ },
+ "system": "drone system 6485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93385285758535,
+ 38.333665971953565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6486",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6486 accessories"
+ }
+ },
+ "system": "drone system 6486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35521797330784,
+ 39.24525341098055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6487",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6487 accessories"
+ }
+ },
+ "system": "drone system 6487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53672794277412,
+ 38.97602609223101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6488",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6488 accessories"
+ }
+ },
+ "system": "drone system 6488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68538187419308,
+ 39.58404558502626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6489",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6489 accessories"
+ }
+ },
+ "system": "drone system 6489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96857283767449,
+ 38.405147723178516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6490",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6490 accessories"
+ }
+ },
+ "system": "drone system 6490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38144328192308,
+ 39.32552662347285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6491",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6491 accessories"
+ }
+ },
+ "system": "drone system 6491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77582553121292,
+ 39.19308032275494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6492",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6492 accessories"
+ }
+ },
+ "system": "drone system 6492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18507014661265,
+ 38.86000938323595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6493",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6493 accessories"
+ }
+ },
+ "system": "drone system 6493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17689012658889,
+ 38.57128126868959
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6494",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6494 accessories"
+ }
+ },
+ "system": "drone system 6494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34304115112486,
+ 39.4008979919604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6495",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6495 accessories"
+ }
+ },
+ "system": "drone system 6495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62702876138204,
+ 39.56901530036563
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6496",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6496 accessories"
+ }
+ },
+ "system": "drone system 6496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30091305327683,
+ 38.713341304253085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6497",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6497 accessories"
+ }
+ },
+ "system": "drone system 6497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41664914081787,
+ 38.15199249611441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6498",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6498 accessories"
+ }
+ },
+ "system": "drone system 6498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37057381115473,
+ 38.46824157082609
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6499",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6499 accessories"
+ }
+ },
+ "system": "drone system 6499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84100164833532,
+ 38.89058308597484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6500",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6500 accessories"
+ }
+ },
+ "system": "drone system 6500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.109545154485,
+ 38.292071274231034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6501",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6501 accessories"
+ }
+ },
+ "system": "drone system 6501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68203981009361,
+ 38.757358243840365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6502",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6502 accessories"
+ }
+ },
+ "system": "drone system 6502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09870777917175,
+ 39.563657589383745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6503",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6503 accessories"
+ }
+ },
+ "system": "drone system 6503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64527708281305,
+ 38.5835528178445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6504",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6504 accessories"
+ }
+ },
+ "system": "drone system 6504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02799948135475,
+ 38.90369623019209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6505 accessories"
+ }
+ },
+ "system": "drone system 6505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52270532335694,
+ 39.052812667629944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6506",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6506 accessories"
+ }
+ },
+ "system": "drone system 6506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59757574333825,
+ 39.390391719744855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6507",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6507 accessories"
+ }
+ },
+ "system": "drone system 6507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42735949766087,
+ 39.57436483113539
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6508",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6508 accessories"
+ }
+ },
+ "system": "drone system 6508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70383713495616,
+ 39.646242251267275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6509",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6509 accessories"
+ }
+ },
+ "system": "drone system 6509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62302383785863,
+ 38.29951696040832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6510",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6510 accessories"
+ }
+ },
+ "system": "drone system 6510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43826489517312,
+ 39.19114997337989
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6511",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6511 accessories"
+ }
+ },
+ "system": "drone system 6511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5959256843872,
+ 38.507337662019424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6512",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6512 accessories"
+ }
+ },
+ "system": "drone system 6512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38176595836171,
+ 38.12789870486193
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6513",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6513 accessories"
+ }
+ },
+ "system": "drone system 6513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88355731324941,
+ 38.94696639707476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6514",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6514 accessories"
+ }
+ },
+ "system": "drone system 6514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70140643527753,
+ 39.31292358955122
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6515",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6515 accessories"
+ }
+ },
+ "system": "drone system 6515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98799556829871,
+ 38.10152681615633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6516",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6516 accessories"
+ }
+ },
+ "system": "drone system 6516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17177545867543,
+ 38.79125047811533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6517",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6517 accessories"
+ }
+ },
+ "system": "drone system 6517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83553500178878,
+ 39.132654632696145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6518",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6518 accessories"
+ }
+ },
+ "system": "drone system 6518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28212627116172,
+ 38.45142613058885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6519",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6519 accessories"
+ }
+ },
+ "system": "drone system 6519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39229828728345,
+ 38.70886500160875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6520",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6520 accessories"
+ }
+ },
+ "system": "drone system 6520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17504952098972,
+ 39.27727582814413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6521",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6521 accessories"
+ }
+ },
+ "system": "drone system 6521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81143211258262,
+ 39.21900675554781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6522",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6522 accessories"
+ }
+ },
+ "system": "drone system 6522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51280451105383,
+ 39.61610193259793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6523",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6523 accessories"
+ }
+ },
+ "system": "drone system 6523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.827791911098,
+ 39.13396915117588
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6524",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6524 accessories"
+ }
+ },
+ "system": "drone system 6524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2745552997071,
+ 38.829674362452366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6525",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6525 accessories"
+ }
+ },
+ "system": "drone system 6525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11682912260241,
+ 39.59732079550622
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6526",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6526 accessories"
+ }
+ },
+ "system": "drone system 6526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97217749914475,
+ 38.43703343624809
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6527",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6527 accessories"
+ }
+ },
+ "system": "drone system 6527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43720087912203,
+ 39.44884199777727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6528",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6528 accessories"
+ }
+ },
+ "system": "drone system 6528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28014954009252,
+ 38.85818765179168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6529",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6529 accessories"
+ }
+ },
+ "system": "drone system 6529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93317349661915,
+ 38.68129207470765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6530",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6530 accessories"
+ }
+ },
+ "system": "drone system 6530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36114125384303,
+ 38.5054219303307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6531",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6531 accessories"
+ }
+ },
+ "system": "drone system 6531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11712048427897,
+ 38.146838281595684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6532",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6532 accessories"
+ }
+ },
+ "system": "drone system 6532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33792362261724,
+ 39.193392077821265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6533",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6533 accessories"
+ }
+ },
+ "system": "drone system 6533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25262380811958,
+ 39.63165848518791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6534",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6534 accessories"
+ }
+ },
+ "system": "drone system 6534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70473122442706,
+ 38.27215497121072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6535",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6535 accessories"
+ }
+ },
+ "system": "drone system 6535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31856422234173,
+ 38.59823643502909
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6536",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6536 accessories"
+ }
+ },
+ "system": "drone system 6536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8052618388906,
+ 39.15160766311406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6537",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6537 accessories"
+ }
+ },
+ "system": "drone system 6537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96214759753033,
+ 39.31421232926746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6538",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6538 accessories"
+ }
+ },
+ "system": "drone system 6538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58633646777118,
+ 38.62977472869164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6539",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6539 accessories"
+ }
+ },
+ "system": "drone system 6539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5917053908365,
+ 38.57821694146673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6540",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6540 accessories"
+ }
+ },
+ "system": "drone system 6540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09629882025747,
+ 38.48151054783415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6541",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6541 accessories"
+ }
+ },
+ "system": "drone system 6541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58559674857239,
+ 39.01455726989839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6542",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6542 accessories"
+ }
+ },
+ "system": "drone system 6542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49186030193071,
+ 39.639355028738294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6543",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6543 accessories"
+ }
+ },
+ "system": "drone system 6543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36516977909224,
+ 38.77990350075097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6544",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6544 accessories"
+ }
+ },
+ "system": "drone system 6544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29034792055093,
+ 38.867163646796875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6545",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6545 accessories"
+ }
+ },
+ "system": "drone system 6545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32117608357167,
+ 39.55129021121128
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6546",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6546 accessories"
+ }
+ },
+ "system": "drone system 6546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4406004605998,
+ 39.70828988971409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6547",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6547 accessories"
+ }
+ },
+ "system": "drone system 6547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77200828458639,
+ 39.334880227453745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6548",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6548 accessories"
+ }
+ },
+ "system": "drone system 6548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44958981256676,
+ 39.429475459582115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6549",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6549 accessories"
+ }
+ },
+ "system": "drone system 6549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93144266399587,
+ 39.673100759848246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6550",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6550 accessories"
+ }
+ },
+ "system": "drone system 6550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67902309652077,
+ 38.77012857322951
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6551",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6551 accessories"
+ }
+ },
+ "system": "drone system 6551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44531838977929,
+ 38.11515853667021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6552",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6552 accessories"
+ }
+ },
+ "system": "drone system 6552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98345962825343,
+ 38.815690078180296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6553",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6553 accessories"
+ }
+ },
+ "system": "drone system 6553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58534448436956,
+ 39.120775979740095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6554",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6554 accessories"
+ }
+ },
+ "system": "drone system 6554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87034931854613,
+ 38.80920481867642
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6555",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6555 accessories"
+ }
+ },
+ "system": "drone system 6555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1821405270417,
+ 39.52486619276822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6556",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6556 accessories"
+ }
+ },
+ "system": "drone system 6556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36625630514378,
+ 38.40296051231232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6557",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6557 accessories"
+ }
+ },
+ "system": "drone system 6557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69819826199878,
+ 39.21912366714515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6558",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6558 accessories"
+ }
+ },
+ "system": "drone system 6558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27996109273938,
+ 39.35555913053116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6559",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6559 accessories"
+ }
+ },
+ "system": "drone system 6559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55469378402294,
+ 38.841769801598424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6560",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6560 accessories"
+ }
+ },
+ "system": "drone system 6560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50088629671033,
+ 39.095113245862194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6561",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6561 accessories"
+ }
+ },
+ "system": "drone system 6561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02014543942795,
+ 38.545548202107184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6562",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6562 accessories"
+ }
+ },
+ "system": "drone system 6562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56773212477937,
+ 39.13951180883553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6563",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6563 accessories"
+ }
+ },
+ "system": "drone system 6563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24085030260981,
+ 38.31621956880261
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6564",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6564 accessories"
+ }
+ },
+ "system": "drone system 6564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16075868986646,
+ 38.90997809180196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6565",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6565 accessories"
+ }
+ },
+ "system": "drone system 6565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70190064468783,
+ 38.823427637418895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6566 accessories"
+ }
+ },
+ "system": "drone system 6566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61646113677696,
+ 38.55960542711139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6567",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6567 accessories"
+ }
+ },
+ "system": "drone system 6567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03721700485396,
+ 38.95064306889191
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6568",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6568 accessories"
+ }
+ },
+ "system": "drone system 6568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13906268777798,
+ 38.199717944531656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6569",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6569 accessories"
+ }
+ },
+ "system": "drone system 6569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39079856969272,
+ 38.537816999734176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6570",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6570 accessories"
+ }
+ },
+ "system": "drone system 6570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77301919819838,
+ 38.34060069963312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6571",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6571 accessories"
+ }
+ },
+ "system": "drone system 6571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93008651078593,
+ 39.33441713171928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6572",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6572 accessories"
+ }
+ },
+ "system": "drone system 6572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76569889001082,
+ 38.987790805927546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6573",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6573 accessories"
+ }
+ },
+ "system": "drone system 6573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23794969616382,
+ 38.59378406653476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6574",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6574 accessories"
+ }
+ },
+ "system": "drone system 6574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31106373930783,
+ 38.77485935592583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6575",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6575 accessories"
+ }
+ },
+ "system": "drone system 6575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40511874277826,
+ 38.39675292203162
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6576",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6576 accessories"
+ }
+ },
+ "system": "drone system 6576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49391198143786,
+ 39.51372506435758
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6577",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6577 accessories"
+ }
+ },
+ "system": "drone system 6577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77412476170318,
+ 39.650215444491494
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6578",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6578 accessories"
+ }
+ },
+ "system": "drone system 6578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12705062667617,
+ 39.26886935789389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6579",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6579 accessories"
+ }
+ },
+ "system": "drone system 6579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88511365223506,
+ 39.410055829951055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6580",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6580 accessories"
+ }
+ },
+ "system": "drone system 6580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26676387431995,
+ 38.503793409052534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6581",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6581 accessories"
+ }
+ },
+ "system": "drone system 6581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35879775250652,
+ 38.561615887910826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6582",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6582 accessories"
+ }
+ },
+ "system": "drone system 6582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78342737161628,
+ 39.43900200573557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6583",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6583 accessories"
+ }
+ },
+ "system": "drone system 6583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06857760722188,
+ 39.01509930638129
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6584",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6584 accessories"
+ }
+ },
+ "system": "drone system 6584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29245710409062,
+ 39.54532349670839
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6585",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6585 accessories"
+ }
+ },
+ "system": "drone system 6585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87724232832879,
+ 38.76541476334258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6586",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6586 accessories"
+ }
+ },
+ "system": "drone system 6586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54050955215921,
+ 38.632586688178534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6587",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6587 accessories"
+ }
+ },
+ "system": "drone system 6587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00259931418184,
+ 39.34664239528216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6588",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6588 accessories"
+ }
+ },
+ "system": "drone system 6588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4332609989771,
+ 39.344791954676055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6589",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6589 accessories"
+ }
+ },
+ "system": "drone system 6589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1158211953117,
+ 38.59485735146338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6590",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6590 accessories"
+ }
+ },
+ "system": "drone system 6590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34164359317893,
+ 38.93701137270063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6591",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6591 accessories"
+ }
+ },
+ "system": "drone system 6591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75815260195805,
+ 39.355731923308326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6592",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6592 accessories"
+ }
+ },
+ "system": "drone system 6592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76899159485555,
+ 39.02620720144589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6593",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6593 accessories"
+ }
+ },
+ "system": "drone system 6593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5675335696483,
+ 38.564156788005135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6594",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6594 accessories"
+ }
+ },
+ "system": "drone system 6594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73577726559107,
+ 38.60493024250125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6595",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6595 accessories"
+ }
+ },
+ "system": "drone system 6595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51777942247806,
+ 38.21214528535243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6596",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6596 accessories"
+ }
+ },
+ "system": "drone system 6596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79501246772985,
+ 38.77468578037149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6597",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6597 accessories"
+ }
+ },
+ "system": "drone system 6597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6965366589375,
+ 38.977921276582954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6598",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6598 accessories"
+ }
+ },
+ "system": "drone system 6598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15934782272042,
+ 39.451752161435145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6599",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6599 accessories"
+ }
+ },
+ "system": "drone system 6599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17713994999318,
+ 39.42870051979981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6600",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6600 accessories"
+ }
+ },
+ "system": "drone system 6600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56697757528244,
+ 39.10415954481357
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6601",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6601 accessories"
+ }
+ },
+ "system": "drone system 6601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15485674616592,
+ 38.1171893689846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6602",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6602 accessories"
+ }
+ },
+ "system": "drone system 6602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05109911383896,
+ 38.22872399840482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6603",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6603 accessories"
+ }
+ },
+ "system": "drone system 6603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3862369847868,
+ 39.300260421990764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6604",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6604 accessories"
+ }
+ },
+ "system": "drone system 6604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3220607306021,
+ 39.04979357183532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6605",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6605 accessories"
+ }
+ },
+ "system": "drone system 6605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75538555544307,
+ 38.58196001095982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6606",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6606 accessories"
+ }
+ },
+ "system": "drone system 6606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87421043319661,
+ 39.60308486501142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6607",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6607 accessories"
+ }
+ },
+ "system": "drone system 6607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83178527696634,
+ 38.4306537408895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6608",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6608 accessories"
+ }
+ },
+ "system": "drone system 6608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09965063879156,
+ 38.364346072479904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6609",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6609 accessories"
+ }
+ },
+ "system": "drone system 6609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54216574829593,
+ 39.120703856448806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6610",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6610 accessories"
+ }
+ },
+ "system": "drone system 6610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66250377828219,
+ 39.44071862063722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6611",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6611 accessories"
+ }
+ },
+ "system": "drone system 6611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8971984570522,
+ 38.30489050264655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6612",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6612 accessories"
+ }
+ },
+ "system": "drone system 6612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39232507787221,
+ 38.64134692311021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6613",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6613 accessories"
+ }
+ },
+ "system": "drone system 6613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64978160415517,
+ 38.72071838371114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6614",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6614 accessories"
+ }
+ },
+ "system": "drone system 6614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43346539308826,
+ 38.78088388418577
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6615",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6615 accessories"
+ }
+ },
+ "system": "drone system 6615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70000326298552,
+ 39.06286811660892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6616",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6616 accessories"
+ }
+ },
+ "system": "drone system 6616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38714684116167,
+ 39.29950774978389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6617",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6617 accessories"
+ }
+ },
+ "system": "drone system 6617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26428375653595,
+ 38.94372019447449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6618",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6618 accessories"
+ }
+ },
+ "system": "drone system 6618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76603949287434,
+ 38.38530629669549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6619",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6619 accessories"
+ }
+ },
+ "system": "drone system 6619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87218354638428,
+ 38.03956346829079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6620",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6620 accessories"
+ }
+ },
+ "system": "drone system 6620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80192805631084,
+ 38.565669997733465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6621",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6621 accessories"
+ }
+ },
+ "system": "drone system 6621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39862538825749,
+ 39.26991817935374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6622",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6622 accessories"
+ }
+ },
+ "system": "drone system 6622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38669161143171,
+ 39.47364693370983
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6623",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6623 accessories"
+ }
+ },
+ "system": "drone system 6623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50010061924455,
+ 38.482738432763284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6624",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6624 accessories"
+ }
+ },
+ "system": "drone system 6624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0107087386939,
+ 39.657050874138264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6625",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6625 accessories"
+ }
+ },
+ "system": "drone system 6625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85563492103546,
+ 38.924928898404374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6626",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6626 accessories"
+ }
+ },
+ "system": "drone system 6626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88129184763197,
+ 38.903297847992576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6627",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6627 accessories"
+ }
+ },
+ "system": "drone system 6627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86601077314845,
+ 39.350106429583306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6628",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6628 accessories"
+ }
+ },
+ "system": "drone system 6628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3917573681447,
+ 38.64693858970531
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6629",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6629 accessories"
+ }
+ },
+ "system": "drone system 6629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53224883159191,
+ 38.2940504904243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6630",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6630 accessories"
+ }
+ },
+ "system": "drone system 6630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5950635824238,
+ 39.22154896124034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6631",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6631 accessories"
+ }
+ },
+ "system": "drone system 6631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6866175842304,
+ 39.323060327697675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6632",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6632 accessories"
+ }
+ },
+ "system": "drone system 6632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69076407700443,
+ 39.28613116809923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6633",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6633 accessories"
+ }
+ },
+ "system": "drone system 6633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56869672657056,
+ 39.56128969672136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6634",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6634 accessories"
+ }
+ },
+ "system": "drone system 6634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63030662143909,
+ 38.98548410173176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6635",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6635 accessories"
+ }
+ },
+ "system": "drone system 6635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38492011673844,
+ 39.260332998844326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6636",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6636 accessories"
+ }
+ },
+ "system": "drone system 6636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1137580984104,
+ 39.03285050813697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6637",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6637 accessories"
+ }
+ },
+ "system": "drone system 6637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24508387515674,
+ 39.08834769882399
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6638",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6638 accessories"
+ }
+ },
+ "system": "drone system 6638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7127701731588,
+ 38.89896316024058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6639",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6639 accessories"
+ }
+ },
+ "system": "drone system 6639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5004484732757,
+ 38.21945351149149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6640",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6640 accessories"
+ }
+ },
+ "system": "drone system 6640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83919176011939,
+ 39.17587633768901
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6641",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6641 accessories"
+ }
+ },
+ "system": "drone system 6641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0666281477747,
+ 38.92061345465055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6642",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6642 accessories"
+ }
+ },
+ "system": "drone system 6642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63711414535956,
+ 39.329187132551134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6643",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6643 accessories"
+ }
+ },
+ "system": "drone system 6643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88632267681763,
+ 39.52133749672932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6644",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6644 accessories"
+ }
+ },
+ "system": "drone system 6644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36739464704769,
+ 39.32854201137977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6645",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6645 accessories"
+ }
+ },
+ "system": "drone system 6645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0143272268856,
+ 38.98485790034731
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6646",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6646 accessories"
+ }
+ },
+ "system": "drone system 6646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6972068483186,
+ 38.22827611502918
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6647",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6647 accessories"
+ }
+ },
+ "system": "drone system 6647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59159024788556,
+ 38.65138682350815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6648",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6648 accessories"
+ }
+ },
+ "system": "drone system 6648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46654055029543,
+ 38.64278267375276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6649",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6649 accessories"
+ }
+ },
+ "system": "drone system 6649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62746698994866,
+ 39.23728893221729
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6650",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6650 accessories"
+ }
+ },
+ "system": "drone system 6650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25118734309223,
+ 38.89372816718323
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6651",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6651 accessories"
+ }
+ },
+ "system": "drone system 6651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31146075875024,
+ 38.90024686553236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6652",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6652 accessories"
+ }
+ },
+ "system": "drone system 6652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75767833900736,
+ 38.88641236203351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6653",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6653 accessories"
+ }
+ },
+ "system": "drone system 6653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31849162551184,
+ 39.73601198870514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6654",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6654 accessories"
+ }
+ },
+ "system": "drone system 6654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76841507853658,
+ 38.079548348194514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6655",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6655 accessories"
+ }
+ },
+ "system": "drone system 6655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41204940675179,
+ 39.26031673588038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6656",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6656 accessories"
+ }
+ },
+ "system": "drone system 6656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81961584618274,
+ 38.2165653547829
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6657",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6657 accessories"
+ }
+ },
+ "system": "drone system 6657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51688309820067,
+ 38.24581214435773
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6658",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6658 accessories"
+ }
+ },
+ "system": "drone system 6658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3686516613014,
+ 38.45312347945604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6659",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6659 accessories"
+ }
+ },
+ "system": "drone system 6659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04325740448775,
+ 38.17980808664432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6660",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6660 accessories"
+ }
+ },
+ "system": "drone system 6660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62281014990164,
+ 38.18489128847585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6661",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6661 accessories"
+ }
+ },
+ "system": "drone system 6661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29718250684218,
+ 39.38236440124508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6662",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6662 accessories"
+ }
+ },
+ "system": "drone system 6662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86420186510038,
+ 39.70892405836885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6663",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6663 accessories"
+ }
+ },
+ "system": "drone system 6663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26376327977529,
+ 38.75219038676432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6664",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6664 accessories"
+ }
+ },
+ "system": "drone system 6664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38430632429659,
+ 38.21747213737556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6665",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6665 accessories"
+ }
+ },
+ "system": "drone system 6665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55979623930287,
+ 38.23009373500827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6666",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6666 accessories"
+ }
+ },
+ "system": "drone system 6666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60818983007462,
+ 39.12823676711462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6667",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6667 accessories"
+ }
+ },
+ "system": "drone system 6667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51622095050203,
+ 38.71759918306278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6668",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6668 accessories"
+ }
+ },
+ "system": "drone system 6668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13306434986056,
+ 38.50788543263567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6669",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6669 accessories"
+ }
+ },
+ "system": "drone system 6669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0399066625721,
+ 39.025318198410375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6670",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6670 accessories"
+ }
+ },
+ "system": "drone system 6670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48352383029027,
+ 39.26228809612884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6671",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6671 accessories"
+ }
+ },
+ "system": "drone system 6671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77260285695642,
+ 38.74222088183168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6672",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6672 accessories"
+ }
+ },
+ "system": "drone system 6672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90850807513928,
+ 39.7202423400176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6673",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6673 accessories"
+ }
+ },
+ "system": "drone system 6673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89459937077997,
+ 39.343556825272316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6674",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6674 accessories"
+ }
+ },
+ "system": "drone system 6674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60041896660363,
+ 39.08117813653764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6675",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6675 accessories"
+ }
+ },
+ "system": "drone system 6675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48751218912415,
+ 38.222987266916995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6676",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6676 accessories"
+ }
+ },
+ "system": "drone system 6676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86813052438636,
+ 38.95105023147634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6677",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6677 accessories"
+ }
+ },
+ "system": "drone system 6677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43700633415321,
+ 39.683656623980475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6678",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6678 accessories"
+ }
+ },
+ "system": "drone system 6678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29916862168237,
+ 39.40583866476576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6679",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6679 accessories"
+ }
+ },
+ "system": "drone system 6679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1100014431228,
+ 38.15897090433077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6680",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6680 accessories"
+ }
+ },
+ "system": "drone system 6680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69224787058366,
+ 39.220524525378934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6681",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6681 accessories"
+ }
+ },
+ "system": "drone system 6681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61654027059748,
+ 39.26691743928478
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6682",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6682 accessories"
+ }
+ },
+ "system": "drone system 6682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10968851491228,
+ 38.41361853247684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6683",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6683 accessories"
+ }
+ },
+ "system": "drone system 6683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05645066106311,
+ 39.687608644370236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6684",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6684 accessories"
+ }
+ },
+ "system": "drone system 6684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84548113397236,
+ 39.106927708744486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6685",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6685 accessories"
+ }
+ },
+ "system": "drone system 6685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54375320111845,
+ 38.700815288563746
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6686",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6686 accessories"
+ }
+ },
+ "system": "drone system 6686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15558207949704,
+ 39.1177012027709
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6687",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6687 accessories"
+ }
+ },
+ "system": "drone system 6687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46274425114406,
+ 38.18067685448243
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6688",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6688 accessories"
+ }
+ },
+ "system": "drone system 6688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56328129456965,
+ 39.514237854684595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6689",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6689 accessories"
+ }
+ },
+ "system": "drone system 6689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91285798120238,
+ 38.141090249624725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6690",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6690 accessories"
+ }
+ },
+ "system": "drone system 6690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66869690218732,
+ 38.77443919928528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6691",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6691 accessories"
+ }
+ },
+ "system": "drone system 6691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47022771650836,
+ 39.224247429275955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6692",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6692 accessories"
+ }
+ },
+ "system": "drone system 6692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17512685552357,
+ 38.215831545816116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6693",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6693 accessories"
+ }
+ },
+ "system": "drone system 6693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87517387422754,
+ 38.70494584592149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6694",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6694 accessories"
+ }
+ },
+ "system": "drone system 6694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8769276613326,
+ 38.84483597845927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6695",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6695 accessories"
+ }
+ },
+ "system": "drone system 6695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5482364738082,
+ 39.64623928414636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6696",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6696 accessories"
+ }
+ },
+ "system": "drone system 6696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80338234713071,
+ 38.20037104795563
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6697",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6697 accessories"
+ }
+ },
+ "system": "drone system 6697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46144079305827,
+ 39.453523845266226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6698",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6698 accessories"
+ }
+ },
+ "system": "drone system 6698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22972985638964,
+ 38.61513255876289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6699",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6699 accessories"
+ }
+ },
+ "system": "drone system 6699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3362125442182,
+ 39.70342480330848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6700",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6700 accessories"
+ }
+ },
+ "system": "drone system 6700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09222314036403,
+ 39.4399004263892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6701",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6701 accessories"
+ }
+ },
+ "system": "drone system 6701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68780317009792,
+ 38.74410380894113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6702",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6702 accessories"
+ }
+ },
+ "system": "drone system 6702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53199276633131,
+ 39.12952420235497
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6703",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6703 accessories"
+ }
+ },
+ "system": "drone system 6703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90200764368582,
+ 38.88043939581088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6704",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6704 accessories"
+ }
+ },
+ "system": "drone system 6704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85343457208754,
+ 39.42596705346124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6705",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6705 accessories"
+ }
+ },
+ "system": "drone system 6705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64997018467866,
+ 38.254594723601755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6706",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6706 accessories"
+ }
+ },
+ "system": "drone system 6706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96093456593547,
+ 38.14382784905026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6707",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6707 accessories"
+ }
+ },
+ "system": "drone system 6707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11677256454375,
+ 39.03401451802126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6708",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6708 accessories"
+ }
+ },
+ "system": "drone system 6708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24005936793439,
+ 38.62375471280452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6709",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6709 accessories"
+ }
+ },
+ "system": "drone system 6709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73675290975822,
+ 38.572047883715996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6710",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6710 accessories"
+ }
+ },
+ "system": "drone system 6710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2531561601793,
+ 38.7161700358376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6711",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6711 accessories"
+ }
+ },
+ "system": "drone system 6711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0681206981595,
+ 39.468307720395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6712",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6712 accessories"
+ }
+ },
+ "system": "drone system 6712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39363164689829,
+ 38.547904824363606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6713",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6713 accessories"
+ }
+ },
+ "system": "drone system 6713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42540403180303,
+ 38.71172191460829
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6714",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6714 accessories"
+ }
+ },
+ "system": "drone system 6714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94333991965091,
+ 38.79232861959488
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6715",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6715 accessories"
+ }
+ },
+ "system": "drone system 6715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81156699016417,
+ 38.13275355586698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6716",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6716 accessories"
+ }
+ },
+ "system": "drone system 6716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83136030898343,
+ 39.25360465891257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6717",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6717 accessories"
+ }
+ },
+ "system": "drone system 6717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84795202411125,
+ 38.407582774189216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6718",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6718 accessories"
+ }
+ },
+ "system": "drone system 6718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24492259398957,
+ 38.8202489952672
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6719",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6719 accessories"
+ }
+ },
+ "system": "drone system 6719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4901909490133,
+ 39.135206876199724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6720",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6720 accessories"
+ }
+ },
+ "system": "drone system 6720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34113130123033,
+ 38.364037174640025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6721",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6721 accessories"
+ }
+ },
+ "system": "drone system 6721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55458166053444,
+ 38.79327787364363
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6722",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6722 accessories"
+ }
+ },
+ "system": "drone system 6722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49137530898935,
+ 39.41643687416653
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6723",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6723 accessories"
+ }
+ },
+ "system": "drone system 6723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2943523137402,
+ 39.369506239064556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6724",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6724 accessories"
+ }
+ },
+ "system": "drone system 6724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90217280554947,
+ 38.392644961799526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6725",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6725 accessories"
+ }
+ },
+ "system": "drone system 6725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48783391359278,
+ 38.65742576107758
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6726",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6726 accessories"
+ }
+ },
+ "system": "drone system 6726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87175949679305,
+ 38.88132889542845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6727",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6727 accessories"
+ }
+ },
+ "system": "drone system 6727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82722870297856,
+ 39.583055954426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6728",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6728 accessories"
+ }
+ },
+ "system": "drone system 6728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52551156195437,
+ 39.129561187574744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6729",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6729 accessories"
+ }
+ },
+ "system": "drone system 6729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.336758527428,
+ 39.256469337740896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6730",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6730 accessories"
+ }
+ },
+ "system": "drone system 6730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91874003719316,
+ 39.55849982600753
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6731",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6731 accessories"
+ }
+ },
+ "system": "drone system 6731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23451706355856,
+ 38.49687351401308
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6732",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6732 accessories"
+ }
+ },
+ "system": "drone system 6732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34880858222574,
+ 39.63998326623221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6733",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6733 accessories"
+ }
+ },
+ "system": "drone system 6733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79305210642636,
+ 39.03098766970293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6734",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6734 accessories"
+ }
+ },
+ "system": "drone system 6734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16202615442995,
+ 39.68975116378604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6735",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6735 accessories"
+ }
+ },
+ "system": "drone system 6735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21197369158946,
+ 39.082689697283904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6736",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6736 accessories"
+ }
+ },
+ "system": "drone system 6736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48274213689085,
+ 38.88011256450155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6737",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6737 accessories"
+ }
+ },
+ "system": "drone system 6737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51989072991206,
+ 38.94529364946583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6738",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6738 accessories"
+ }
+ },
+ "system": "drone system 6738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75657759476877,
+ 39.62475406516576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6739",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6739 accessories"
+ }
+ },
+ "system": "drone system 6739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73108498076063,
+ 39.27670993303074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6740",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6740 accessories"
+ }
+ },
+ "system": "drone system 6740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94521341417335,
+ 38.51305196196924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6741",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6741 accessories"
+ }
+ },
+ "system": "drone system 6741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77078986248445,
+ 39.20337693310141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6742",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6742 accessories"
+ }
+ },
+ "system": "drone system 6742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14100492726841,
+ 38.45443358937619
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6743",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6743 accessories"
+ }
+ },
+ "system": "drone system 6743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0196109232691,
+ 39.65851940581725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6744",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6744 accessories"
+ }
+ },
+ "system": "drone system 6744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3776565409488,
+ 39.031452626103054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6745",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6745 accessories"
+ }
+ },
+ "system": "drone system 6745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24588593742533,
+ 38.52608190098762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6746",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6746 accessories"
+ }
+ },
+ "system": "drone system 6746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72689875000347,
+ 39.2158689930051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6747",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6747 accessories"
+ }
+ },
+ "system": "drone system 6747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02890604017367,
+ 38.40179896249276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6748",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6748 accessories"
+ }
+ },
+ "system": "drone system 6748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93665720656888,
+ 39.272226019734056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6749",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6749 accessories"
+ }
+ },
+ "system": "drone system 6749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02279611643742,
+ 39.63673571747762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6750",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6750 accessories"
+ }
+ },
+ "system": "drone system 6750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41704313150058,
+ 39.04646329912274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6751",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6751 accessories"
+ }
+ },
+ "system": "drone system 6751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37905962748923,
+ 38.44732230680343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6752",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6752 accessories"
+ }
+ },
+ "system": "drone system 6752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7381843836225,
+ 39.21407513861289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6753",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6753 accessories"
+ }
+ },
+ "system": "drone system 6753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93524508849595,
+ 39.11717419170235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6754",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6754 accessories"
+ }
+ },
+ "system": "drone system 6754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75822095606259,
+ 39.03897671221398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6755",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6755 accessories"
+ }
+ },
+ "system": "drone system 6755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32833312366945,
+ 39.22819470673339
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6756",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6756 accessories"
+ }
+ },
+ "system": "drone system 6756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96026806847976,
+ 38.07963689116052
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6757",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6757 accessories"
+ }
+ },
+ "system": "drone system 6757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40901205521394,
+ 38.15853542209848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6758",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6758 accessories"
+ }
+ },
+ "system": "drone system 6758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13742227567364,
+ 38.654380743315464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6759",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6759 accessories"
+ }
+ },
+ "system": "drone system 6759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37553704862799,
+ 39.72937129783764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6760",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6760 accessories"
+ }
+ },
+ "system": "drone system 6760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31466683171166,
+ 38.252320965684284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6761",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6761 accessories"
+ }
+ },
+ "system": "drone system 6761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82860601448486,
+ 38.59302557265023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6762",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6762 accessories"
+ }
+ },
+ "system": "drone system 6762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70192688354176,
+ 38.84162202940132
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6763",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6763 accessories"
+ }
+ },
+ "system": "drone system 6763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.93493741786178,
+ 38.947950411626984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6764",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6764 accessories"
+ }
+ },
+ "system": "drone system 6764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60362921594118,
+ 38.30592956335579
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6765",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6765 accessories"
+ }
+ },
+ "system": "drone system 6765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05622314336661,
+ 39.139769412607805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6766",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6766 accessories"
+ }
+ },
+ "system": "drone system 6766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74832386818116,
+ 39.371105065147795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6767",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6767 accessories"
+ }
+ },
+ "system": "drone system 6767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61909875131737,
+ 38.671050892668504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6768",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6768 accessories"
+ }
+ },
+ "system": "drone system 6768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1092654312689,
+ 39.141346094507355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6769",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6769 accessories"
+ }
+ },
+ "system": "drone system 6769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08865523423019,
+ 38.09398656205362
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6770",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6770 accessories"
+ }
+ },
+ "system": "drone system 6770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93425575527966,
+ 38.355832057371934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6771",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6771 accessories"
+ }
+ },
+ "system": "drone system 6771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7738401860683,
+ 38.79161879414717
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6772",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6772 accessories"
+ }
+ },
+ "system": "drone system 6772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70216711924297,
+ 38.56488608798116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6773 accessories"
+ }
+ },
+ "system": "drone system 6773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12301731894745,
+ 39.05932630383882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6774",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6774 accessories"
+ }
+ },
+ "system": "drone system 6774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99921782539167,
+ 39.595857265338736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6775",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6775 accessories"
+ }
+ },
+ "system": "drone system 6775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49386762926632,
+ 39.14035952617377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6776",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6776 accessories"
+ }
+ },
+ "system": "drone system 6776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69836517143935,
+ 38.597031624790645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6777",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6777 accessories"
+ }
+ },
+ "system": "drone system 6777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77261446620207,
+ 38.35828106048961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6778",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6778 accessories"
+ }
+ },
+ "system": "drone system 6778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31826192524284,
+ 39.691933339912495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6779",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6779 accessories"
+ }
+ },
+ "system": "drone system 6779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42848119344919,
+ 39.11859374298674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6780",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6780 accessories"
+ }
+ },
+ "system": "drone system 6780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16211245634402,
+ 38.667374246952235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6781",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6781 accessories"
+ }
+ },
+ "system": "drone system 6781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48805331360441,
+ 38.64298573404894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6782",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6782 accessories"
+ }
+ },
+ "system": "drone system 6782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42241561243343,
+ 39.270820029527506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6783",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6783 accessories"
+ }
+ },
+ "system": "drone system 6783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20892297281128,
+ 38.056151571610286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6784",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6784 accessories"
+ }
+ },
+ "system": "drone system 6784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37581257927108,
+ 38.29775912390182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6785",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6785 accessories"
+ }
+ },
+ "system": "drone system 6785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76134431794337,
+ 38.908880488591365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6786",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6786 accessories"
+ }
+ },
+ "system": "drone system 6786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39429268276685,
+ 39.64531811303752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6787",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6787 accessories"
+ }
+ },
+ "system": "drone system 6787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11787972688404,
+ 38.6774742754625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6788",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6788 accessories"
+ }
+ },
+ "system": "drone system 6788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3632269112097,
+ 38.75089926600398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6789",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6789 accessories"
+ }
+ },
+ "system": "drone system 6789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11756288561972,
+ 38.140805060381645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6790",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6790 accessories"
+ }
+ },
+ "system": "drone system 6790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41978586250403,
+ 38.519454255098665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6791",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6791 accessories"
+ }
+ },
+ "system": "drone system 6791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91870941277467,
+ 38.9246577515285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6792",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6792 accessories"
+ }
+ },
+ "system": "drone system 6792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5260885234519,
+ 39.35286881167013
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6793",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6793 accessories"
+ }
+ },
+ "system": "drone system 6793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17516656487946,
+ 38.91863740899192
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6794",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6794 accessories"
+ }
+ },
+ "system": "drone system 6794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99715834155552,
+ 38.14954730074716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6795",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6795 accessories"
+ }
+ },
+ "system": "drone system 6795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25437548208664,
+ 38.251564436491336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6796",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6796 accessories"
+ }
+ },
+ "system": "drone system 6796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54277718069825,
+ 39.48949839786848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6797",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6797 accessories"
+ }
+ },
+ "system": "drone system 6797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60490450770641,
+ 38.94952834897402
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6798",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6798 accessories"
+ }
+ },
+ "system": "drone system 6798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37943029905672,
+ 38.929499432436174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6799",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6799 accessories"
+ }
+ },
+ "system": "drone system 6799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1973575302915,
+ 39.026512768795364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6800",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6800 accessories"
+ }
+ },
+ "system": "drone system 6800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91860877112236,
+ 38.58469891479292
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6801",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6801 accessories"
+ }
+ },
+ "system": "drone system 6801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82137289799651,
+ 38.75706270769416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6802",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6802 accessories"
+ }
+ },
+ "system": "drone system 6802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20423796927997,
+ 38.957842770840124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6803",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6803 accessories"
+ }
+ },
+ "system": "drone system 6803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62383760387284,
+ 38.631163846743
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6804",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6804 accessories"
+ }
+ },
+ "system": "drone system 6804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32762942232257,
+ 38.668759884397744
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6805",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6805 accessories"
+ }
+ },
+ "system": "drone system 6805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2274378905641,
+ 38.25264125973081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6806",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6806 accessories"
+ }
+ },
+ "system": "drone system 6806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17417205939142,
+ 39.566753404938154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6807",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6807 accessories"
+ }
+ },
+ "system": "drone system 6807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21882329488001,
+ 39.34869909573026
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6808",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6808 accessories"
+ }
+ },
+ "system": "drone system 6808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57126797762076,
+ 38.92496097471345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6809",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6809 accessories"
+ }
+ },
+ "system": "drone system 6809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.192335072393,
+ 38.6742078456866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6810",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6810 accessories"
+ }
+ },
+ "system": "drone system 6810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36479132416581,
+ 38.26249890715016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6811",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6811 accessories"
+ }
+ },
+ "system": "drone system 6811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35032878530697,
+ 39.17636443677117
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6812",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6812 accessories"
+ }
+ },
+ "system": "drone system 6812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94374809559953,
+ 38.72951809241205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6813",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6813 accessories"
+ }
+ },
+ "system": "drone system 6813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28158680678835,
+ 39.40355443006256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6814",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6814 accessories"
+ }
+ },
+ "system": "drone system 6814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76087928568205,
+ 38.61441444578275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6815",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6815 accessories"
+ }
+ },
+ "system": "drone system 6815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95417899240695,
+ 38.84146565691211
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6816",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6816 accessories"
+ }
+ },
+ "system": "drone system 6816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31675394862727,
+ 38.49629495939027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6817",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6817 accessories"
+ }
+ },
+ "system": "drone system 6817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5113912707004,
+ 39.332614505356645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6818",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6818 accessories"
+ }
+ },
+ "system": "drone system 6818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60682521204309,
+ 39.60161909444877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6819",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6819 accessories"
+ }
+ },
+ "system": "drone system 6819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53702998139448,
+ 39.32565123356838
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6820",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6820 accessories"
+ }
+ },
+ "system": "drone system 6820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61896112055767,
+ 39.49339043017279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6821",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6821 accessories"
+ }
+ },
+ "system": "drone system 6821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19137238585604,
+ 38.04831627580492
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6822",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6822 accessories"
+ }
+ },
+ "system": "drone system 6822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41033619615102,
+ 38.88620439406564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6823",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6823 accessories"
+ }
+ },
+ "system": "drone system 6823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23371937602691,
+ 39.08975265089074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6824",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6824 accessories"
+ }
+ },
+ "system": "drone system 6824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8856972226179,
+ 39.0796336543915
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6825",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6825 accessories"
+ }
+ },
+ "system": "drone system 6825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70685579313974,
+ 38.91243510366797
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6826",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6826 accessories"
+ }
+ },
+ "system": "drone system 6826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72837750089836,
+ 39.433215741489185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6827",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6827 accessories"
+ }
+ },
+ "system": "drone system 6827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4369680926944,
+ 38.333037193431075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6828",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6828 accessories"
+ }
+ },
+ "system": "drone system 6828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92586243731824,
+ 39.22894971955748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6829",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6829 accessories"
+ }
+ },
+ "system": "drone system 6829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52507785348668,
+ 38.764017840476114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6830",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6830 accessories"
+ }
+ },
+ "system": "drone system 6830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88522137349581,
+ 38.72395074892221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6831",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6831 accessories"
+ }
+ },
+ "system": "drone system 6831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25746344665697,
+ 39.40789460006644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6832",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6832 accessories"
+ }
+ },
+ "system": "drone system 6832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29685978944187,
+ 39.12724104445323
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6833",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6833 accessories"
+ }
+ },
+ "system": "drone system 6833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14141929625735,
+ 38.65839706185191
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6834",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6834 accessories"
+ }
+ },
+ "system": "drone system 6834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29149075565923,
+ 39.68442333073436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6835",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6835 accessories"
+ }
+ },
+ "system": "drone system 6835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62693577929222,
+ 39.36237017997544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6836",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6836 accessories"
+ }
+ },
+ "system": "drone system 6836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71520603064107,
+ 38.11912631800727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6837",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6837 accessories"
+ }
+ },
+ "system": "drone system 6837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71142016441507,
+ 39.107403049401185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6838",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6838 accessories"
+ }
+ },
+ "system": "drone system 6838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63653778756436,
+ 38.97052550951967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6839",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6839 accessories"
+ }
+ },
+ "system": "drone system 6839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43239274549056,
+ 38.7301112368069
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6840",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6840 accessories"
+ }
+ },
+ "system": "drone system 6840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61480912718385,
+ 39.11682494199242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6841",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6841 accessories"
+ }
+ },
+ "system": "drone system 6841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61831548464464,
+ 39.03260987116344
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6842",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6842 accessories"
+ }
+ },
+ "system": "drone system 6842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9900437662813,
+ 39.32946552931497
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6843",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6843 accessories"
+ }
+ },
+ "system": "drone system 6843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96493639958992,
+ 39.22299692866305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6844",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6844 accessories"
+ }
+ },
+ "system": "drone system 6844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47427365949714,
+ 38.85062573298852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6845",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6845 accessories"
+ }
+ },
+ "system": "drone system 6845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79229361714918,
+ 39.14318372793663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6846",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6846 accessories"
+ }
+ },
+ "system": "drone system 6846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36747958085104,
+ 38.559966853383564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6847",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6847 accessories"
+ }
+ },
+ "system": "drone system 6847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53443387922285,
+ 38.358273160744666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6848",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6848 accessories"
+ }
+ },
+ "system": "drone system 6848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74162773800283,
+ 38.107922304594844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6849",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6849 accessories"
+ }
+ },
+ "system": "drone system 6849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22038320877719,
+ 39.54826105734082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6850",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6850 accessories"
+ }
+ },
+ "system": "drone system 6850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91294536148853,
+ 38.57299463109549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6851",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6851 accessories"
+ }
+ },
+ "system": "drone system 6851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6476547544221,
+ 39.004313572033794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6852",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6852 accessories"
+ }
+ },
+ "system": "drone system 6852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76672757601581,
+ 38.593513722072764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6853",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6853 accessories"
+ }
+ },
+ "system": "drone system 6853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66983148852903,
+ 39.52224733691696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6854",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6854 accessories"
+ }
+ },
+ "system": "drone system 6854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43630277553332,
+ 39.25607224517196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6855",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6855 accessories"
+ }
+ },
+ "system": "drone system 6855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59514877576427,
+ 39.19798840613655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6856",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6856 accessories"
+ }
+ },
+ "system": "drone system 6856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06491785007114,
+ 39.61958108468263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6857",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6857 accessories"
+ }
+ },
+ "system": "drone system 6857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0824524273111,
+ 38.135239109628024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6858",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6858 accessories"
+ }
+ },
+ "system": "drone system 6858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51830227430874,
+ 38.37688388276124
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6859",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6859 accessories"
+ }
+ },
+ "system": "drone system 6859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71989918429614,
+ 39.47371230931421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6860",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6860 accessories"
+ }
+ },
+ "system": "drone system 6860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15122950515536,
+ 39.67933852371586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6861",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6861 accessories"
+ }
+ },
+ "system": "drone system 6861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4480579609857,
+ 39.382747124063485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6862",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6862 accessories"
+ }
+ },
+ "system": "drone system 6862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43167403181278,
+ 39.33424831381047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6863",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6863 accessories"
+ }
+ },
+ "system": "drone system 6863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16946346110532,
+ 38.16083603250825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6864",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6864 accessories"
+ }
+ },
+ "system": "drone system 6864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50162692732698,
+ 38.333932597003084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6865",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6865 accessories"
+ }
+ },
+ "system": "drone system 6865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34349215040571,
+ 39.59714115331283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6866",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6866 accessories"
+ }
+ },
+ "system": "drone system 6866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40344848940828,
+ 39.04923944314934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6867",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6867 accessories"
+ }
+ },
+ "system": "drone system 6867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3527166967389,
+ 38.62998432258643
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6868",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6868 accessories"
+ }
+ },
+ "system": "drone system 6868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16773637472896,
+ 38.99991228259789
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6869",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6869 accessories"
+ }
+ },
+ "system": "drone system 6869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03632129198033,
+ 39.39780136581762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6870",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6870 accessories"
+ }
+ },
+ "system": "drone system 6870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61162314910216,
+ 39.310681631540845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6871",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6871 accessories"
+ }
+ },
+ "system": "drone system 6871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39591975922919,
+ 38.57292164174048
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6872",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6872 accessories"
+ }
+ },
+ "system": "drone system 6872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56813611883683,
+ 39.11683910575333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6873",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6873 accessories"
+ }
+ },
+ "system": "drone system 6873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7233993220028,
+ 38.112312354276035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6874",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6874 accessories"
+ }
+ },
+ "system": "drone system 6874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29580010112191,
+ 39.17192642053403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6875",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6875 accessories"
+ }
+ },
+ "system": "drone system 6875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55830312493448,
+ 39.25641523779312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6876",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6876 accessories"
+ }
+ },
+ "system": "drone system 6876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83699133781444,
+ 39.66279288366232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6877",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6877 accessories"
+ }
+ },
+ "system": "drone system 6877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72378060585329,
+ 38.87751001391685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6878",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6878 accessories"
+ }
+ },
+ "system": "drone system 6878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00139505021062,
+ 38.69716660504082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6879",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6879 accessories"
+ }
+ },
+ "system": "drone system 6879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4034026641151,
+ 38.4391520014341
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6880",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6880 accessories"
+ }
+ },
+ "system": "drone system 6880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5727446043379,
+ 38.344919481078456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6881",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6881 accessories"
+ }
+ },
+ "system": "drone system 6881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6896577240901,
+ 38.59602704969614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6882",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6882 accessories"
+ }
+ },
+ "system": "drone system 6882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66939635902379,
+ 38.94730244607578
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6883",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6883 accessories"
+ }
+ },
+ "system": "drone system 6883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62635010830513,
+ 39.6919216931639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6884",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6884 accessories"
+ }
+ },
+ "system": "drone system 6884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05938834594835,
+ 38.26392002632464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6885",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6885 accessories"
+ }
+ },
+ "system": "drone system 6885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47078049967892,
+ 38.92660883895724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6886",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6886 accessories"
+ }
+ },
+ "system": "drone system 6886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66059184142367,
+ 38.79634752939157
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6887",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6887 accessories"
+ }
+ },
+ "system": "drone system 6887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91919742975091,
+ 38.945489620581895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6888",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6888 accessories"
+ }
+ },
+ "system": "drone system 6888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40277392291759,
+ 39.575671344991044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6889",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6889 accessories"
+ }
+ },
+ "system": "drone system 6889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88486040583005,
+ 39.443705886125485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6890",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6890 accessories"
+ }
+ },
+ "system": "drone system 6890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24970332086815,
+ 38.54359760197244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6891",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6891 accessories"
+ }
+ },
+ "system": "drone system 6891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47322725157376,
+ 39.373451309875755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6892",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6892 accessories"
+ }
+ },
+ "system": "drone system 6892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95612955080591,
+ 38.79857108477933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6893",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6893 accessories"
+ }
+ },
+ "system": "drone system 6893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45127224703205,
+ 38.69127263154288
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6894",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6894 accessories"
+ }
+ },
+ "system": "drone system 6894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21093508537052,
+ 38.984860438163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6895",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6895 accessories"
+ }
+ },
+ "system": "drone system 6895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30858743465281,
+ 38.42163784698198
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6896",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6896 accessories"
+ }
+ },
+ "system": "drone system 6896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36064482653285,
+ 38.095082758757044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6897",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6897 accessories"
+ }
+ },
+ "system": "drone system 6897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25497573339416,
+ 38.697276193947886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6898",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6898 accessories"
+ }
+ },
+ "system": "drone system 6898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1895985359752,
+ 38.1740788098751
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6899",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6899 accessories"
+ }
+ },
+ "system": "drone system 6899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04918785508006,
+ 39.09697882251674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6900",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6900 accessories"
+ }
+ },
+ "system": "drone system 6900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51704390110108,
+ 39.18007071677725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6901",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6901 accessories"
+ }
+ },
+ "system": "drone system 6901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88406053439142,
+ 38.701072043989534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6902",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6902 accessories"
+ }
+ },
+ "system": "drone system 6902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8011644078446,
+ 38.139262448334485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6903",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6903 accessories"
+ }
+ },
+ "system": "drone system 6903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55464680876608,
+ 38.69501648872627
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6904",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6904 accessories"
+ }
+ },
+ "system": "drone system 6904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14449630549232,
+ 38.3779554684964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6905",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6905 accessories"
+ }
+ },
+ "system": "drone system 6905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64502057335078,
+ 38.297444869588475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6906",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6906 accessories"
+ }
+ },
+ "system": "drone system 6906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68727277262767,
+ 39.19736755413948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6907",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6907 accessories"
+ }
+ },
+ "system": "drone system 6907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4382283950178,
+ 39.592573891087675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6908",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6908 accessories"
+ }
+ },
+ "system": "drone system 6908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36561973752204,
+ 38.614545958396306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6909",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6909 accessories"
+ }
+ },
+ "system": "drone system 6909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79347751834594,
+ 39.29895444271443
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6910",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6910 accessories"
+ }
+ },
+ "system": "drone system 6910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90171706262319,
+ 39.368887132161795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6911",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6911 accessories"
+ }
+ },
+ "system": "drone system 6911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3643380777555,
+ 38.205538868040506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6912",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6912 accessories"
+ }
+ },
+ "system": "drone system 6912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41573398912372,
+ 39.09128330911186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6913",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6913 accessories"
+ }
+ },
+ "system": "drone system 6913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23544566563666,
+ 39.182408445743384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6914",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6914 accessories"
+ }
+ },
+ "system": "drone system 6914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54191395810265,
+ 38.54907175321262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6915",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6915 accessories"
+ }
+ },
+ "system": "drone system 6915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47238702297122,
+ 38.72672661861221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6916",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6916 accessories"
+ }
+ },
+ "system": "drone system 6916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01812353294461,
+ 39.6335164919545
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6917",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6917 accessories"
+ }
+ },
+ "system": "drone system 6917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43632946979577,
+ 38.873100536739685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6918",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6918 accessories"
+ }
+ },
+ "system": "drone system 6918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07295734998199,
+ 39.41969265048861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6919",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6919 accessories"
+ }
+ },
+ "system": "drone system 6919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26285265277406,
+ 39.635896536319116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6920",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6920 accessories"
+ }
+ },
+ "system": "drone system 6920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9678041339418,
+ 39.708920382557004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6921",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6921 accessories"
+ }
+ },
+ "system": "drone system 6921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39562346764467,
+ 38.70462144231081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6922",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6922 accessories"
+ }
+ },
+ "system": "drone system 6922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00810313501978,
+ 38.83829625895145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6923",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6923 accessories"
+ }
+ },
+ "system": "drone system 6923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.31231189563466,
+ 38.69954040269855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6924",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6924 accessories"
+ }
+ },
+ "system": "drone system 6924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66766812598219,
+ 39.2921137872449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6925",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6925 accessories"
+ }
+ },
+ "system": "drone system 6925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56152790821199,
+ 38.41674990279837
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6926",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6926 accessories"
+ }
+ },
+ "system": "drone system 6926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.278895853541,
+ 38.449174067811356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6927",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6927 accessories"
+ }
+ },
+ "system": "drone system 6927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96298380181302,
+ 38.09208640804289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6928",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6928 accessories"
+ }
+ },
+ "system": "drone system 6928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82734093245108,
+ 38.7426456772705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6929",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6929 accessories"
+ }
+ },
+ "system": "drone system 6929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0488951108111,
+ 38.78551271644682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6930",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6930 accessories"
+ }
+ },
+ "system": "drone system 6930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98777202620118,
+ 39.74583424498003
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6931",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6931 accessories"
+ }
+ },
+ "system": "drone system 6931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48027296790589,
+ 38.71006396275203
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6932",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6932 accessories"
+ }
+ },
+ "system": "drone system 6932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72135927147022,
+ 39.27131705527372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6933",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6933 accessories"
+ }
+ },
+ "system": "drone system 6933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4897341468281,
+ 39.11206026124717
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6934",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6934 accessories"
+ }
+ },
+ "system": "drone system 6934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55805272090699,
+ 39.09731664940058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6935",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6935 accessories"
+ }
+ },
+ "system": "drone system 6935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67043743598921,
+ 39.148343791875774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6936",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6936 accessories"
+ }
+ },
+ "system": "drone system 6936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3959857266947,
+ 39.549568713037516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6937",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6937 accessories"
+ }
+ },
+ "system": "drone system 6937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80272780812608,
+ 38.577623109084875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6938",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6938 accessories"
+ }
+ },
+ "system": "drone system 6938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42152559520541,
+ 39.59123648640661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6939",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6939 accessories"
+ }
+ },
+ "system": "drone system 6939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77305573185325,
+ 38.36866100073459
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6940",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6940 accessories"
+ }
+ },
+ "system": "drone system 6940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0886422089902,
+ 39.41690088566618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6941",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6941 accessories"
+ }
+ },
+ "system": "drone system 6941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53534722543266,
+ 39.087273497283086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6942",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6942 accessories"
+ }
+ },
+ "system": "drone system 6942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81378306140358,
+ 39.2417560729434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6943",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6943 accessories"
+ }
+ },
+ "system": "drone system 6943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53706794623467,
+ 38.882731220522736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6944",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6944 accessories"
+ }
+ },
+ "system": "drone system 6944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02158080055747,
+ 39.08696053675072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6945",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6945 accessories"
+ }
+ },
+ "system": "drone system 6945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00964836375103,
+ 38.21190567831692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6946",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6946 accessories"
+ }
+ },
+ "system": "drone system 6946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41230100043555,
+ 38.65802859576215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6947",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6947 accessories"
+ }
+ },
+ "system": "drone system 6947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.22023054905158,
+ 38.56662591514557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6948",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6948 accessories"
+ }
+ },
+ "system": "drone system 6948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34247859207662,
+ 38.294609307043025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6949",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6949 accessories"
+ }
+ },
+ "system": "drone system 6949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81453877763732,
+ 38.948391535548446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6950",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6950 accessories"
+ }
+ },
+ "system": "drone system 6950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40807617916035,
+ 38.82198824093689
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6951",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6951 accessories"
+ }
+ },
+ "system": "drone system 6951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15103962914408,
+ 39.15082860420789
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6952",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6952 accessories"
+ }
+ },
+ "system": "drone system 6952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99802443703878,
+ 38.88151231848315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6953",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6953 accessories"
+ }
+ },
+ "system": "drone system 6953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20637872484708,
+ 38.628447657419315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6954",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6954 accessories"
+ }
+ },
+ "system": "drone system 6954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85411917113895,
+ 38.57626650725145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6955",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6955 accessories"
+ }
+ },
+ "system": "drone system 6955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05780093747002,
+ 38.94590490518214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6956",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6956 accessories"
+ }
+ },
+ "system": "drone system 6956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46517740087876,
+ 39.23142210831892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6957",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6957 accessories"
+ }
+ },
+ "system": "drone system 6957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00748272146706,
+ 39.56710449490432
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6958",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6958 accessories"
+ }
+ },
+ "system": "drone system 6958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85569037782264,
+ 38.94935455966454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6959",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6959 accessories"
+ }
+ },
+ "system": "drone system 6959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57955970870435,
+ 39.103401404954894
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6960",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6960 accessories"
+ }
+ },
+ "system": "drone system 6960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1651669150541,
+ 38.852182888261005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6961",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6961 accessories"
+ }
+ },
+ "system": "drone system 6961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04848701904346,
+ 39.43741465813185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6962",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6962 accessories"
+ }
+ },
+ "system": "drone system 6962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84903333103436,
+ 39.18468314135698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6963",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6963 accessories"
+ }
+ },
+ "system": "drone system 6963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75478429656637,
+ 39.16772810305993
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6964",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6964 accessories"
+ }
+ },
+ "system": "drone system 6964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27847859019913,
+ 39.45303166584191
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6965",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6965 accessories"
+ }
+ },
+ "system": "drone system 6965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6735046667027,
+ 38.691957662791054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6966",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6966 accessories"
+ }
+ },
+ "system": "drone system 6966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56542418568299,
+ 38.36965738448931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6967",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6967 accessories"
+ }
+ },
+ "system": "drone system 6967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2420788522685,
+ 39.355751902280076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6968",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6968 accessories"
+ }
+ },
+ "system": "drone system 6968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55812409809214,
+ 38.91636740394893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6969",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6969 accessories"
+ }
+ },
+ "system": "drone system 6969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78701847218015,
+ 38.68760218778818
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6970",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6970 accessories"
+ }
+ },
+ "system": "drone system 6970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3478569743595,
+ 38.64249069573267
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6971",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6971 accessories"
+ }
+ },
+ "system": "drone system 6971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95467828837242,
+ 38.43180595276422
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6972",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6972 accessories"
+ }
+ },
+ "system": "drone system 6972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42905500264477,
+ 38.709718322476725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6973",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6973 accessories"
+ }
+ },
+ "system": "drone system 6973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60208458750559,
+ 39.4156245671036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6974",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6974 accessories"
+ }
+ },
+ "system": "drone system 6974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10643215078305,
+ 38.154017657669826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6975",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6975 accessories"
+ }
+ },
+ "system": "drone system 6975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56516601947487,
+ 38.51721130223727
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6976",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6976 accessories"
+ }
+ },
+ "system": "drone system 6976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53176344150684,
+ 38.52359215720088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6977",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6977 accessories"
+ }
+ },
+ "system": "drone system 6977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86040519718469,
+ 38.836380360835825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6978",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6978 accessories"
+ }
+ },
+ "system": "drone system 6978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18974878900397,
+ 39.1925758120369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6979",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6979 accessories"
+ }
+ },
+ "system": "drone system 6979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47856910656618,
+ 39.62402274984863
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6980",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6980 accessories"
+ }
+ },
+ "system": "drone system 6980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45661961179687,
+ 39.36597260321516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6981",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6981 accessories"
+ }
+ },
+ "system": "drone system 6981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74338852240908,
+ 38.237821778354984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6982",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6982 accessories"
+ }
+ },
+ "system": "drone system 6982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81235828075735,
+ 38.29550563665694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6983",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6983 accessories"
+ }
+ },
+ "system": "drone system 6983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95348357777557,
+ 38.75029477451389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6984",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6984 accessories"
+ }
+ },
+ "system": "drone system 6984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38102293866858,
+ 39.22899935546817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6985",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6985 accessories"
+ }
+ },
+ "system": "drone system 6985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3975981620547,
+ 38.37335267371719
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6986",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6986 accessories"
+ }
+ },
+ "system": "drone system 6986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69375433960738,
+ 38.96454625620155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6987",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6987 accessories"
+ }
+ },
+ "system": "drone system 6987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12598377831871,
+ 39.15697078033969
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6988",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6988 accessories"
+ }
+ },
+ "system": "drone system 6988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65357395031315,
+ 39.1927425028284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6989",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6989 accessories"
+ }
+ },
+ "system": "drone system 6989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0059861827739,
+ 38.531971282230366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6990",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6990 accessories"
+ }
+ },
+ "system": "drone system 6990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94606585349614,
+ 38.59540960829244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6991",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6991 accessories"
+ }
+ },
+ "system": "drone system 6991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8298582060672,
+ 38.62458673852426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6992",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6992 accessories"
+ }
+ },
+ "system": "drone system 6992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42047060637258,
+ 39.28880448366245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6993",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6993 accessories"
+ }
+ },
+ "system": "drone system 6993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2933106735206,
+ 39.009648906420836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6994",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6994 accessories"
+ }
+ },
+ "system": "drone system 6994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61251320655501,
+ 39.50034520860496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6995",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6995 accessories"
+ }
+ },
+ "system": "drone system 6995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72402363825407,
+ 38.967107462395134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6996",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6996 accessories"
+ }
+ },
+ "system": "drone system 6996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90857283584799,
+ 38.375403280741565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6997",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6997 accessories"
+ }
+ },
+ "system": "drone system 6997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50095879430438,
+ 38.74813747333535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6998",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6998 accessories"
+ }
+ },
+ "system": "drone system 6998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25591200065328,
+ 39.11747931528868
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone6999",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone6999 accessories"
+ }
+ },
+ "system": "drone system 6999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50403124322558,
+ 39.17052152800444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7000",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7000 accessories"
+ }
+ },
+ "system": "drone system 7000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56844303698821,
+ 38.32209150234888
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7001",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7001 accessories"
+ }
+ },
+ "system": "drone system 7001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77751845600278,
+ 38.724846130182804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7002",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7002 accessories"
+ }
+ },
+ "system": "drone system 7002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65742641644083,
+ 39.23011253900353
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7003",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7003 accessories"
+ }
+ },
+ "system": "drone system 7003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88618636448768,
+ 38.88439806365479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7004",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7004 accessories"
+ }
+ },
+ "system": "drone system 7004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82827612024796,
+ 39.272948371796396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7005",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7005 accessories"
+ }
+ },
+ "system": "drone system 7005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22078404030087,
+ 39.342221502121575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7006",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7006 accessories"
+ }
+ },
+ "system": "drone system 7006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77783434009298,
+ 38.416325607052244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7007",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7007 accessories"
+ }
+ },
+ "system": "drone system 7007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01361590401922,
+ 39.225769835544256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7008",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7008 accessories"
+ }
+ },
+ "system": "drone system 7008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61129411059807,
+ 39.22154866726163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7009",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7009 accessories"
+ }
+ },
+ "system": "drone system 7009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4777434910277,
+ 39.32411245096529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7010",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7010 accessories"
+ }
+ },
+ "system": "drone system 7010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62433960438662,
+ 38.42311319683956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7011",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7011 accessories"
+ }
+ },
+ "system": "drone system 7011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54631467806371,
+ 38.286813873239
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7012",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7012 accessories"
+ }
+ },
+ "system": "drone system 7012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45959309220528,
+ 38.227744514587165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7013",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7013 accessories"
+ }
+ },
+ "system": "drone system 7013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29790547221731,
+ 38.63902011509554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7014",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7014 accessories"
+ }
+ },
+ "system": "drone system 7014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33545101078771,
+ 38.62914610349115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7015",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7015 accessories"
+ }
+ },
+ "system": "drone system 7015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58707718253306,
+ 38.738127914917136
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7016",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7016 accessories"
+ }
+ },
+ "system": "drone system 7016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88264516607333,
+ 38.71790742013159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7017",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7017 accessories"
+ }
+ },
+ "system": "drone system 7017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37299297707091,
+ 38.575295724701284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7018",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7018 accessories"
+ }
+ },
+ "system": "drone system 7018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29664576607878,
+ 39.69173844308965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7019",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7019 accessories"
+ }
+ },
+ "system": "drone system 7019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60795696334534,
+ 38.43310884314392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7020",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7020 accessories"
+ }
+ },
+ "system": "drone system 7020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59989182710673,
+ 38.27033500008149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7021",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7021 accessories"
+ }
+ },
+ "system": "drone system 7021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62741469882529,
+ 38.31647244299748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7022",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7022 accessories"
+ }
+ },
+ "system": "drone system 7022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87408228908278,
+ 38.37011571229546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7023",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7023 accessories"
+ }
+ },
+ "system": "drone system 7023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78038112080044,
+ 39.60927745812226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7024",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7024 accessories"
+ }
+ },
+ "system": "drone system 7024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51203256432656,
+ 39.0670930058282
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7025",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7025 accessories"
+ }
+ },
+ "system": "drone system 7025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4229422412252,
+ 39.34340160342923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7026",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7026 accessories"
+ }
+ },
+ "system": "drone system 7026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35584885440728,
+ 38.26717369429501
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7027",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7027 accessories"
+ }
+ },
+ "system": "drone system 7027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41186873437829,
+ 39.678273576714226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7028",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7028 accessories"
+ }
+ },
+ "system": "drone system 7028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7244090132367,
+ 38.44424862950827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7029",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7029 accessories"
+ }
+ },
+ "system": "drone system 7029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52657487986565,
+ 38.175069615995184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7030",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7030 accessories"
+ }
+ },
+ "system": "drone system 7030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58420332520068,
+ 38.859232216217144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7031",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7031 accessories"
+ }
+ },
+ "system": "drone system 7031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01162244068556,
+ 39.06036953572622
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7032",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7032 accessories"
+ }
+ },
+ "system": "drone system 7032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22781157609612,
+ 39.53614521017201
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7033",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7033 accessories"
+ }
+ },
+ "system": "drone system 7033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22612210472052,
+ 38.450291259472955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7034",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7034 accessories"
+ }
+ },
+ "system": "drone system 7034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15722670506219,
+ 38.40625041252483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7035",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7035 accessories"
+ }
+ },
+ "system": "drone system 7035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59744094399845,
+ 38.86401977364456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7036",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7036 accessories"
+ }
+ },
+ "system": "drone system 7036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80892851379208,
+ 38.37810433321527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7037",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7037 accessories"
+ }
+ },
+ "system": "drone system 7037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81471962184337,
+ 38.85382043326962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7038",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7038 accessories"
+ }
+ },
+ "system": "drone system 7038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18278503092367,
+ 39.45363209479351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7039",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7039 accessories"
+ }
+ },
+ "system": "drone system 7039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1402003253586,
+ 39.5303133683663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7040",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7040 accessories"
+ }
+ },
+ "system": "drone system 7040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91526062357758,
+ 38.89379488433333
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7041",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7041 accessories"
+ }
+ },
+ "system": "drone system 7041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45156945185612,
+ 38.64885438228876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7042",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7042 accessories"
+ }
+ },
+ "system": "drone system 7042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38758472059779,
+ 38.43956800443381
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7043",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7043 accessories"
+ }
+ },
+ "system": "drone system 7043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18392266162586,
+ 39.71838791268714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7044",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7044 accessories"
+ }
+ },
+ "system": "drone system 7044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.857328913411,
+ 39.64416728634249
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7045",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7045 accessories"
+ }
+ },
+ "system": "drone system 7045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10985009215153,
+ 38.863526663352694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7046",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7046 accessories"
+ }
+ },
+ "system": "drone system 7046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74860283291198,
+ 38.89426989354711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7047",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7047 accessories"
+ }
+ },
+ "system": "drone system 7047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60280116702609,
+ 39.399173216569764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7048",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7048 accessories"
+ }
+ },
+ "system": "drone system 7048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71040947464354,
+ 39.31957261829554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7049",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7049 accessories"
+ }
+ },
+ "system": "drone system 7049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5785479150274,
+ 38.57350903070608
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7050",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7050 accessories"
+ }
+ },
+ "system": "drone system 7050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82675615834145,
+ 39.49269649769861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7051",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7051 accessories"
+ }
+ },
+ "system": "drone system 7051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39068906446846,
+ 39.012449581795785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7052",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7052 accessories"
+ }
+ },
+ "system": "drone system 7052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59076824411598,
+ 39.18318561391265
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7053",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7053 accessories"
+ }
+ },
+ "system": "drone system 7053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38836266392092,
+ 39.327733471906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7054",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7054 accessories"
+ }
+ },
+ "system": "drone system 7054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00543606621066,
+ 38.489131958082766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7055",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7055 accessories"
+ }
+ },
+ "system": "drone system 7055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7987223070016,
+ 39.17908867076819
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7056",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7056 accessories"
+ }
+ },
+ "system": "drone system 7056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73485000105359,
+ 38.159113615631185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7057",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7057 accessories"
+ }
+ },
+ "system": "drone system 7057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5332290877675,
+ 39.23213366202478
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7058",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7058 accessories"
+ }
+ },
+ "system": "drone system 7058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42401268461879,
+ 39.49589714677155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7059",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7059 accessories"
+ }
+ },
+ "system": "drone system 7059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69810302323744,
+ 38.72042473760554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7060",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7060 accessories"
+ }
+ },
+ "system": "drone system 7060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23805257574038,
+ 38.31003883549933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7061",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7061 accessories"
+ }
+ },
+ "system": "drone system 7061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68733337751767,
+ 38.92453732803056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7062",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7062 accessories"
+ }
+ },
+ "system": "drone system 7062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38948144885154,
+ 38.99982308339971
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7063",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7063 accessories"
+ }
+ },
+ "system": "drone system 7063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53079948290154,
+ 38.658402261703046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7064",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7064 accessories"
+ }
+ },
+ "system": "drone system 7064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88075615227909,
+ 38.974623215882396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7065",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7065 accessories"
+ }
+ },
+ "system": "drone system 7065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28652971005224,
+ 39.59328265967266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7066",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7066 accessories"
+ }
+ },
+ "system": "drone system 7066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6378942952672,
+ 39.53396913640742
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7067",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7067 accessories"
+ }
+ },
+ "system": "drone system 7067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79131727887038,
+ 39.56995422527718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7068",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7068 accessories"
+ }
+ },
+ "system": "drone system 7068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6833000754668,
+ 38.994702330423074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7069",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7069 accessories"
+ }
+ },
+ "system": "drone system 7069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54137328179849,
+ 38.16271503829163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7070",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7070 accessories"
+ }
+ },
+ "system": "drone system 7070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7932203878066,
+ 38.80249193622847
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7071",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7071 accessories"
+ }
+ },
+ "system": "drone system 7071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3409496792884,
+ 38.47943428588435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7072",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7072 accessories"
+ }
+ },
+ "system": "drone system 7072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65594547354718,
+ 38.28191386827497
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7073",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7073 accessories"
+ }
+ },
+ "system": "drone system 7073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41453442051102,
+ 38.324066154576585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7074",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7074 accessories"
+ }
+ },
+ "system": "drone system 7074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11782244739278,
+ 38.493727138874874
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7075",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7075 accessories"
+ }
+ },
+ "system": "drone system 7075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61376427232257,
+ 38.970398096115815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7076",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7076 accessories"
+ }
+ },
+ "system": "drone system 7076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92866603393385,
+ 38.86977681504662
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7077",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7077 accessories"
+ }
+ },
+ "system": "drone system 7077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39071902631127,
+ 39.666015807715446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7078",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7078 accessories"
+ }
+ },
+ "system": "drone system 7078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12691743118624,
+ 38.11818198239615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7079",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7079 accessories"
+ }
+ },
+ "system": "drone system 7079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58539691193293,
+ 39.29493779230981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7080",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7080 accessories"
+ }
+ },
+ "system": "drone system 7080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9824690261265,
+ 38.64855753466682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7081",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7081 accessories"
+ }
+ },
+ "system": "drone system 7081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.9209172544542,
+ 38.97934514074454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7082",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7082 accessories"
+ }
+ },
+ "system": "drone system 7082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4663509847469,
+ 39.40304788863386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7083",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7083 accessories"
+ }
+ },
+ "system": "drone system 7083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75715948199382,
+ 38.79791448882553
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7084",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7084 accessories"
+ }
+ },
+ "system": "drone system 7084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65681864188832,
+ 38.379992817258724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7085",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7085 accessories"
+ }
+ },
+ "system": "drone system 7085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99577667368726,
+ 38.44261918946247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7086",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7086 accessories"
+ }
+ },
+ "system": "drone system 7086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07894537547364,
+ 39.75489116344476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7087",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7087 accessories"
+ }
+ },
+ "system": "drone system 7087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8342295159853,
+ 39.09408127543137
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7088",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7088 accessories"
+ }
+ },
+ "system": "drone system 7088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78976666427363,
+ 38.30117286656232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7089",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7089 accessories"
+ }
+ },
+ "system": "drone system 7089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73341553625751,
+ 38.660048494951376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7090",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7090 accessories"
+ }
+ },
+ "system": "drone system 7090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97123264926269,
+ 38.64394746457163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7091",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7091 accessories"
+ }
+ },
+ "system": "drone system 7091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02323236287789,
+ 38.04325636022138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7092",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7092 accessories"
+ }
+ },
+ "system": "drone system 7092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0855784765358,
+ 39.49162331999752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7093",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7093 accessories"
+ }
+ },
+ "system": "drone system 7093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97326922695706,
+ 39.40458171233741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7094",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7094 accessories"
+ }
+ },
+ "system": "drone system 7094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34271200328484,
+ 39.196787293843876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7095",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7095 accessories"
+ }
+ },
+ "system": "drone system 7095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65277456398185,
+ 38.38018416899184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7096",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7096 accessories"
+ }
+ },
+ "system": "drone system 7096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76254137087494,
+ 38.430001563253576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7097",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7097 accessories"
+ }
+ },
+ "system": "drone system 7097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37188181019874,
+ 38.86758396056593
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7098",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7098 accessories"
+ }
+ },
+ "system": "drone system 7098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91963502358102,
+ 39.31519254169421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7099",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7099 accessories"
+ }
+ },
+ "system": "drone system 7099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96609688421786,
+ 39.07025763801316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7100",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7100 accessories"
+ }
+ },
+ "system": "drone system 7100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5468411845239,
+ 38.497446507531876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7101",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7101 accessories"
+ }
+ },
+ "system": "drone system 7101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6105828731568,
+ 39.26901440547209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7102",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7102 accessories"
+ }
+ },
+ "system": "drone system 7102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73251837142173,
+ 39.70656749707734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7103",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7103 accessories"
+ }
+ },
+ "system": "drone system 7103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80674336384733,
+ 39.68506124387058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7104",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7104 accessories"
+ }
+ },
+ "system": "drone system 7104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09335825101661,
+ 38.018196472057916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7105",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7105 accessories"
+ }
+ },
+ "system": "drone system 7105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35061957570566,
+ 39.63410063198011
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7106",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7106 accessories"
+ }
+ },
+ "system": "drone system 7106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.32646295818664,
+ 38.951200191000375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7107",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7107 accessories"
+ }
+ },
+ "system": "drone system 7107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82770568240994,
+ 38.598755081989616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7108",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7108 accessories"
+ }
+ },
+ "system": "drone system 7108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70046134139093,
+ 39.39456083673948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7109",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7109 accessories"
+ }
+ },
+ "system": "drone system 7109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68503635455,
+ 39.103773787775246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7110",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7110 accessories"
+ }
+ },
+ "system": "drone system 7110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84885348805437,
+ 38.596686826580985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7111",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7111 accessories"
+ }
+ },
+ "system": "drone system 7111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29688986485104,
+ 38.41399489322485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7112",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7112 accessories"
+ }
+ },
+ "system": "drone system 7112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2412463081415,
+ 39.014414085763406
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7113",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7113 accessories"
+ }
+ },
+ "system": "drone system 7113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2278655306988,
+ 38.71527881109226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7114",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7114 accessories"
+ }
+ },
+ "system": "drone system 7114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88760219562968,
+ 38.29763537384324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7115",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7115 accessories"
+ }
+ },
+ "system": "drone system 7115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99566188108084,
+ 39.60504413660279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7116",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7116 accessories"
+ }
+ },
+ "system": "drone system 7116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41289810043324,
+ 38.75018109491337
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7117",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7117 accessories"
+ }
+ },
+ "system": "drone system 7117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9059096890389,
+ 38.74314685169817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7118",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7118 accessories"
+ }
+ },
+ "system": "drone system 7118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80462950718785,
+ 38.65820487180464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7119",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7119 accessories"
+ }
+ },
+ "system": "drone system 7119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40736250926797,
+ 38.574133773711985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7120",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7120 accessories"
+ }
+ },
+ "system": "drone system 7120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88606318980669,
+ 39.061379055007386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7121",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7121 accessories"
+ }
+ },
+ "system": "drone system 7121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69247168931733,
+ 39.45072581751445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7122",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7122 accessories"
+ }
+ },
+ "system": "drone system 7122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42422285141235,
+ 38.527224176588184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7123",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7123 accessories"
+ }
+ },
+ "system": "drone system 7123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02056174544775,
+ 38.906061576587376
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7124",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7124 accessories"
+ }
+ },
+ "system": "drone system 7124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17164892075677,
+ 38.7876484518225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7125",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7125 accessories"
+ }
+ },
+ "system": "drone system 7125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60067088774194,
+ 39.237630332321565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7126",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7126 accessories"
+ }
+ },
+ "system": "drone system 7126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77424877602407,
+ 38.8418269209568
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7127",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7127 accessories"
+ }
+ },
+ "system": "drone system 7127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81479904635609,
+ 38.190093761621405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7128",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7128 accessories"
+ }
+ },
+ "system": "drone system 7128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11313083363919,
+ 38.277570998145144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7129",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7129 accessories"
+ }
+ },
+ "system": "drone system 7129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63124298948891,
+ 39.32626494122263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7130",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7130 accessories"
+ }
+ },
+ "system": "drone system 7130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13300884577835,
+ 38.06017194926919
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7131",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7131 accessories"
+ }
+ },
+ "system": "drone system 7131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69939817736484,
+ 38.42801134757945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7132",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7132 accessories"
+ }
+ },
+ "system": "drone system 7132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15671086376236,
+ 39.38681234483279
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7133",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7133 accessories"
+ }
+ },
+ "system": "drone system 7133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74101261523262,
+ 39.06765396436977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7134",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7134 accessories"
+ }
+ },
+ "system": "drone system 7134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94769915137124,
+ 38.807636246705364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7135",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7135 accessories"
+ }
+ },
+ "system": "drone system 7135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26976673147158,
+ 38.98940934278536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7136",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7136 accessories"
+ }
+ },
+ "system": "drone system 7136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17367237178131,
+ 38.12740587979816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7137",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7137 accessories"
+ }
+ },
+ "system": "drone system 7137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58685285819864,
+ 38.251175872291654
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7138",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7138 accessories"
+ }
+ },
+ "system": "drone system 7138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83517742327084,
+ 38.928477360459624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7139",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7139 accessories"
+ }
+ },
+ "system": "drone system 7139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97118756499638,
+ 38.73283407183227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7140",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7140 accessories"
+ }
+ },
+ "system": "drone system 7140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64012764450696,
+ 38.95056278188061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7141",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7141 accessories"
+ }
+ },
+ "system": "drone system 7141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3557044855444,
+ 38.972528802163104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7142",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7142 accessories"
+ }
+ },
+ "system": "drone system 7142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57649577324564,
+ 38.965742011928754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7143",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7143 accessories"
+ }
+ },
+ "system": "drone system 7143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72352896363698,
+ 38.2373498715454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7144",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7144 accessories"
+ }
+ },
+ "system": "drone system 7144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23860757809382,
+ 39.60555458346156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7145",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7145 accessories"
+ }
+ },
+ "system": "drone system 7145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36944789070952,
+ 38.92026853244211
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7146",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7146 accessories"
+ }
+ },
+ "system": "drone system 7146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09405922613755,
+ 39.10206478836274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7147",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7147 accessories"
+ }
+ },
+ "system": "drone system 7147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78913252060745,
+ 39.66276966548165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7148",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7148 accessories"
+ }
+ },
+ "system": "drone system 7148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.209794175027,
+ 39.67038509934167
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7149",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7149 accessories"
+ }
+ },
+ "system": "drone system 7149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58395162010218,
+ 39.163310695306656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7150",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7150 accessories"
+ }
+ },
+ "system": "drone system 7150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38903829508986,
+ 38.72140805141477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7151",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7151 accessories"
+ }
+ },
+ "system": "drone system 7151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07548673805655,
+ 38.94260813805993
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7152",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7152 accessories"
+ }
+ },
+ "system": "drone system 7152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39843236584686,
+ 39.22581226539767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7153",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7153 accessories"
+ }
+ },
+ "system": "drone system 7153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94224137429143,
+ 38.07397162122702
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7154",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7154 accessories"
+ }
+ },
+ "system": "drone system 7154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66508583236748,
+ 38.46085028799576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7155",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7155 accessories"
+ }
+ },
+ "system": "drone system 7155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26915534022868,
+ 39.18303264817184
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7156",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7156 accessories"
+ }
+ },
+ "system": "drone system 7156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68649492160819,
+ 39.351309274949244
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7157",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7157 accessories"
+ }
+ },
+ "system": "drone system 7157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17502934883623,
+ 38.96041893589567
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7158",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7158 accessories"
+ }
+ },
+ "system": "drone system 7158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06724913174281,
+ 39.251512830120724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7159",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7159 accessories"
+ }
+ },
+ "system": "drone system 7159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57369207514483,
+ 38.69585172728767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7160",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7160 accessories"
+ }
+ },
+ "system": "drone system 7160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92128744032657,
+ 38.24570398599142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7161",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7161 accessories"
+ }
+ },
+ "system": "drone system 7161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92702305445151,
+ 38.612262167858574
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7162",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7162 accessories"
+ }
+ },
+ "system": "drone system 7162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29492122792288,
+ 38.49636145462752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7163",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7163 accessories"
+ }
+ },
+ "system": "drone system 7163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56887101149029,
+ 39.03915704476445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7164",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7164 accessories"
+ }
+ },
+ "system": "drone system 7164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72808587329448,
+ 38.121491993138264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7165",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7165 accessories"
+ }
+ },
+ "system": "drone system 7165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35279316972219,
+ 38.26473302155942
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7166",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7166 accessories"
+ }
+ },
+ "system": "drone system 7166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06019913240101,
+ 38.34670627145813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7167",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7167 accessories"
+ }
+ },
+ "system": "drone system 7167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49442578588625,
+ 38.5317826494271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7168",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7168 accessories"
+ }
+ },
+ "system": "drone system 7168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6840781460586,
+ 39.561822559935116
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7169",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7169 accessories"
+ }
+ },
+ "system": "drone system 7169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85489174209225,
+ 39.493847306088895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7170",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7170 accessories"
+ }
+ },
+ "system": "drone system 7170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22110582987405,
+ 39.38900637965586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7171",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7171 accessories"
+ }
+ },
+ "system": "drone system 7171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4690827064066,
+ 39.64271493835264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7172",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7172 accessories"
+ }
+ },
+ "system": "drone system 7172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37176835126064,
+ 38.40347394536458
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7173",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7173 accessories"
+ }
+ },
+ "system": "drone system 7173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77730913370871,
+ 39.683784185153115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7174",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7174 accessories"
+ }
+ },
+ "system": "drone system 7174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46545072686571,
+ 38.97538427919148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7175",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7175 accessories"
+ }
+ },
+ "system": "drone system 7175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60914297017783,
+ 39.627672119454836
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7176",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7176 accessories"
+ }
+ },
+ "system": "drone system 7176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58328364173228,
+ 39.58591129934078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7177",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7177 accessories"
+ }
+ },
+ "system": "drone system 7177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8986974428321,
+ 38.690563298243596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7178",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7178 accessories"
+ }
+ },
+ "system": "drone system 7178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95113474321298,
+ 38.751487884367485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7179 accessories"
+ }
+ },
+ "system": "drone system 7179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54192361596313,
+ 39.02397552029246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7180",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7180 accessories"
+ }
+ },
+ "system": "drone system 7180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31424529019455,
+ 38.82644953829656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7181",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7181 accessories"
+ }
+ },
+ "system": "drone system 7181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03032311550588,
+ 38.405631256758234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7182",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7182 accessories"
+ }
+ },
+ "system": "drone system 7182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04925618501886,
+ 38.75036899560062
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7183",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7183 accessories"
+ }
+ },
+ "system": "drone system 7183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6426221395675,
+ 38.87235290522028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7184",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7184 accessories"
+ }
+ },
+ "system": "drone system 7184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6547076678897,
+ 38.88655637954462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7185",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7185 accessories"
+ }
+ },
+ "system": "drone system 7185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15318336046006,
+ 39.264776143798485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7186",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7186 accessories"
+ }
+ },
+ "system": "drone system 7186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4662559125417,
+ 38.765837528537546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7187",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7187 accessories"
+ }
+ },
+ "system": "drone system 7187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52119719469962,
+ 38.36529422612401
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7188",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7188 accessories"
+ }
+ },
+ "system": "drone system 7188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75479233129562,
+ 38.867033457001845
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7189",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7189 accessories"
+ }
+ },
+ "system": "drone system 7189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39239635013146,
+ 38.431844515075895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7190 accessories"
+ }
+ },
+ "system": "drone system 7190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30525512223673,
+ 38.22482872947027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7191",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7191 accessories"
+ }
+ },
+ "system": "drone system 7191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99772793582744,
+ 39.680102354775734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7192",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7192 accessories"
+ }
+ },
+ "system": "drone system 7192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8505762903483,
+ 38.55902595733764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7193",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7193 accessories"
+ }
+ },
+ "system": "drone system 7193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00331088415568,
+ 38.916453546470834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7194",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7194 accessories"
+ }
+ },
+ "system": "drone system 7194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36473954885744,
+ 38.813029055284034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7195",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7195 accessories"
+ }
+ },
+ "system": "drone system 7195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81027472884105,
+ 38.98943400830428
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7196",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7196 accessories"
+ }
+ },
+ "system": "drone system 7196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3003479844671,
+ 38.43918029992781
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7197",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7197 accessories"
+ }
+ },
+ "system": "drone system 7197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63272203897125,
+ 38.42398084926834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7198",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7198 accessories"
+ }
+ },
+ "system": "drone system 7198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09809913844485,
+ 39.06609630739321
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7199",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7199 accessories"
+ }
+ },
+ "system": "drone system 7199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36168754245179,
+ 38.95264313008168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7200",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7200 accessories"
+ }
+ },
+ "system": "drone system 7200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46805544371577,
+ 39.25552838743875
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7201",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7201 accessories"
+ }
+ },
+ "system": "drone system 7201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41822400748303,
+ 39.3743797033621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7202",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7202 accessories"
+ }
+ },
+ "system": "drone system 7202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57429405696901,
+ 39.403100428061705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7203",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7203 accessories"
+ }
+ },
+ "system": "drone system 7203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37546547637882,
+ 39.3662189353408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7204",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7204 accessories"
+ }
+ },
+ "system": "drone system 7204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39149761658669,
+ 38.59411298261703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7205",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7205 accessories"
+ }
+ },
+ "system": "drone system 7205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82870391620727,
+ 39.244753008375625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7206",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7206 accessories"
+ }
+ },
+ "system": "drone system 7206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39474597167849,
+ 39.34895384113021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7207",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7207 accessories"
+ }
+ },
+ "system": "drone system 7207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45485521989252,
+ 39.027164590655985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7208",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7208 accessories"
+ }
+ },
+ "system": "drone system 7208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27636707745197,
+ 38.753210106938084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7209",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7209 accessories"
+ }
+ },
+ "system": "drone system 7209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57886239942154,
+ 38.398817500469356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7210",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7210 accessories"
+ }
+ },
+ "system": "drone system 7210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83684695068163,
+ 38.78693081977623
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7211",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7211 accessories"
+ }
+ },
+ "system": "drone system 7211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12555559870903,
+ 38.03318034837489
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7212",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7212 accessories"
+ }
+ },
+ "system": "drone system 7212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94272027786708,
+ 39.79565538520765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7213",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7213 accessories"
+ }
+ },
+ "system": "drone system 7213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5091918315773,
+ 39.07947399270011
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7214",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7214 accessories"
+ }
+ },
+ "system": "drone system 7214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10787002918292,
+ 39.24075146622936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7215 accessories"
+ }
+ },
+ "system": "drone system 7215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24528435272092,
+ 39.04211258706633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7216",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7216 accessories"
+ }
+ },
+ "system": "drone system 7216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23544468807822,
+ 38.30991861680101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7217",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7217 accessories"
+ }
+ },
+ "system": "drone system 7217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37047466994963,
+ 38.55885337268351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7218",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7218 accessories"
+ }
+ },
+ "system": "drone system 7218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76222196248004,
+ 38.58646686880798
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7219",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7219 accessories"
+ }
+ },
+ "system": "drone system 7219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65310798025297,
+ 39.693313299111175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7220",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7220 accessories"
+ }
+ },
+ "system": "drone system 7220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45398156441057,
+ 38.32756922452096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7221",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7221 accessories"
+ }
+ },
+ "system": "drone system 7221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88732297457733,
+ 39.46546397908872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7222",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7222 accessories"
+ }
+ },
+ "system": "drone system 7222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59827163763315,
+ 38.3101848162004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7223",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7223 accessories"
+ }
+ },
+ "system": "drone system 7223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65735349684455,
+ 39.160054457899385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7224",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7224 accessories"
+ }
+ },
+ "system": "drone system 7224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20553956512191,
+ 38.73265557984258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7225 accessories"
+ }
+ },
+ "system": "drone system 7225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98084447951021,
+ 38.54431179853449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7226",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7226 accessories"
+ }
+ },
+ "system": "drone system 7226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96156194094347,
+ 38.282342854545576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7227",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7227 accessories"
+ }
+ },
+ "system": "drone system 7227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13389335840591,
+ 39.22138240766753
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7228",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7228 accessories"
+ }
+ },
+ "system": "drone system 7228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54881294606018,
+ 38.550983873447585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7229",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7229 accessories"
+ }
+ },
+ "system": "drone system 7229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9863543410492,
+ 39.37866517472827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7230",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7230 accessories"
+ }
+ },
+ "system": "drone system 7230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64195807061772,
+ 39.25708194566309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7231",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7231 accessories"
+ }
+ },
+ "system": "drone system 7231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8799981419676,
+ 39.28250831306437
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7232",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7232 accessories"
+ }
+ },
+ "system": "drone system 7232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53809180622764,
+ 38.76479897110027
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7233",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7233 accessories"
+ }
+ },
+ "system": "drone system 7233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49509765398213,
+ 38.52975948941394
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7234",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7234 accessories"
+ }
+ },
+ "system": "drone system 7234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30112211250055,
+ 38.58903846462173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7235",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7235 accessories"
+ }
+ },
+ "system": "drone system 7235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28140001397495,
+ 38.96381501608961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7236",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7236 accessories"
+ }
+ },
+ "system": "drone system 7236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5099311102296,
+ 38.6504621634517
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7237",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7237 accessories"
+ }
+ },
+ "system": "drone system 7237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74204383482919,
+ 39.45057045519188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7238",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7238 accessories"
+ }
+ },
+ "system": "drone system 7238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51044913812858,
+ 39.66059977763057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7239 accessories"
+ }
+ },
+ "system": "drone system 7239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59735043771052,
+ 39.14505226967088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7240",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7240 accessories"
+ }
+ },
+ "system": "drone system 7240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18340444381961,
+ 38.49087789090904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7241",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7241 accessories"
+ }
+ },
+ "system": "drone system 7241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79019942575795,
+ 38.82468858524296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7242",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7242 accessories"
+ }
+ },
+ "system": "drone system 7242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46395435946604,
+ 39.11659425117793
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7243",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7243 accessories"
+ }
+ },
+ "system": "drone system 7243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15523084062383,
+ 39.1170447290902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7244",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7244 accessories"
+ }
+ },
+ "system": "drone system 7244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98829547833813,
+ 38.46304836449985
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7245",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7245 accessories"
+ }
+ },
+ "system": "drone system 7245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52010463147572,
+ 39.03076281151639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7246",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7246 accessories"
+ }
+ },
+ "system": "drone system 7246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2340727747009,
+ 38.82614237224409
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7247",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7247 accessories"
+ }
+ },
+ "system": "drone system 7247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85610389288942,
+ 39.117095961169554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7248",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7248 accessories"
+ }
+ },
+ "system": "drone system 7248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74009310500013,
+ 39.12971801308972
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7249",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7249 accessories"
+ }
+ },
+ "system": "drone system 7249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21470521851566,
+ 39.00280400418029
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7250",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7250 accessories"
+ }
+ },
+ "system": "drone system 7250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29329323034179,
+ 38.95879830196893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7251",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7251 accessories"
+ }
+ },
+ "system": "drone system 7251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58951074967455,
+ 39.08194650486841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7252",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7252 accessories"
+ }
+ },
+ "system": "drone system 7252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11687456843102,
+ 38.47957270278345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7253",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7253 accessories"
+ }
+ },
+ "system": "drone system 7253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0935139616633,
+ 38.25951888524373
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7254",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7254 accessories"
+ }
+ },
+ "system": "drone system 7254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42611930904322,
+ 39.52383343133569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7255",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7255 accessories"
+ }
+ },
+ "system": "drone system 7255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7722698797658,
+ 38.41893565880531
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7256",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7256 accessories"
+ }
+ },
+ "system": "drone system 7256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52381890244585,
+ 39.127895333677316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7257",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7257 accessories"
+ }
+ },
+ "system": "drone system 7257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19759140157717,
+ 38.203675078057636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7258",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7258 accessories"
+ }
+ },
+ "system": "drone system 7258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67121218073937,
+ 39.54632398291058
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7259",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7259 accessories"
+ }
+ },
+ "system": "drone system 7259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01007998734319,
+ 38.66250747940159
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7260",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7260 accessories"
+ }
+ },
+ "system": "drone system 7260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36367783203129,
+ 38.87238512694813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7261",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7261 accessories"
+ }
+ },
+ "system": "drone system 7261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51754274425373,
+ 38.55955107836367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7262",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7262 accessories"
+ }
+ },
+ "system": "drone system 7262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72772213742228,
+ 39.01160113253144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7263",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7263 accessories"
+ }
+ },
+ "system": "drone system 7263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56777281424927,
+ 38.78923440707575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7264",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7264 accessories"
+ }
+ },
+ "system": "drone system 7264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1905111720184,
+ 38.700232965930596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7265",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7265 accessories"
+ }
+ },
+ "system": "drone system 7265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81743541515272,
+ 39.650654604197214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7266",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7266 accessories"
+ }
+ },
+ "system": "drone system 7266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6555737250069,
+ 39.46619259890679
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7267",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7267 accessories"
+ }
+ },
+ "system": "drone system 7267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52746792202639,
+ 39.33007555496466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7268",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7268 accessories"
+ }
+ },
+ "system": "drone system 7268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46333843173879,
+ 38.213867074357395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7269",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7269 accessories"
+ }
+ },
+ "system": "drone system 7269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29657844680119,
+ 38.64595876406145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7270",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7270 accessories"
+ }
+ },
+ "system": "drone system 7270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07178093437074,
+ 38.15169891072317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7271",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7271 accessories"
+ }
+ },
+ "system": "drone system 7271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02940617060244,
+ 38.364045366375734
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7272",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7272 accessories"
+ }
+ },
+ "system": "drone system 7272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44622370947388,
+ 39.578310313663025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7273",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7273 accessories"
+ }
+ },
+ "system": "drone system 7273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7480070626642,
+ 38.64997270583732
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7274",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7274 accessories"
+ }
+ },
+ "system": "drone system 7274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86548048084708,
+ 38.850553344022686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7275",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7275 accessories"
+ }
+ },
+ "system": "drone system 7275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17920230878292,
+ 38.79855316933569
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7276",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7276 accessories"
+ }
+ },
+ "system": "drone system 7276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04878747753531,
+ 38.80015473404821
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7277",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7277 accessories"
+ }
+ },
+ "system": "drone system 7277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70469785706005,
+ 39.71922063190121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7278",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7278 accessories"
+ }
+ },
+ "system": "drone system 7278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39626807171675,
+ 38.62180459839111
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7279",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7279 accessories"
+ }
+ },
+ "system": "drone system 7279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36386194390101,
+ 39.06630374855508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7280",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7280 accessories"
+ }
+ },
+ "system": "drone system 7280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64765937954047,
+ 39.16216385504982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7281",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7281 accessories"
+ }
+ },
+ "system": "drone system 7281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30873013205347,
+ 39.39751058538403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7282",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7282 accessories"
+ }
+ },
+ "system": "drone system 7282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00801760818693,
+ 39.718625070520766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7283",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7283 accessories"
+ }
+ },
+ "system": "drone system 7283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34335414676266,
+ 39.16978206700634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7284",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7284 accessories"
+ }
+ },
+ "system": "drone system 7284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79357110123605,
+ 39.56901235444149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7285",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7285 accessories"
+ }
+ },
+ "system": "drone system 7285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88187518383677,
+ 39.05256733850021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7286",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7286 accessories"
+ }
+ },
+ "system": "drone system 7286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50866022892389,
+ 39.55692941983705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7287",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7287 accessories"
+ }
+ },
+ "system": "drone system 7287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60666897481109,
+ 38.58697182108588
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7288",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7288 accessories"
+ }
+ },
+ "system": "drone system 7288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26864798702731,
+ 39.31786522117417
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7289",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7289 accessories"
+ }
+ },
+ "system": "drone system 7289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11042506959149,
+ 38.07772690242404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7290",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7290 accessories"
+ }
+ },
+ "system": "drone system 7290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47130868942097,
+ 39.54737622555444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7291",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7291 accessories"
+ }
+ },
+ "system": "drone system 7291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02068494002269,
+ 38.52552084935881
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7292",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7292 accessories"
+ }
+ },
+ "system": "drone system 7292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09819800295826,
+ 38.98431338267767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7293",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7293 accessories"
+ }
+ },
+ "system": "drone system 7293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76422202996717,
+ 39.07814768856113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7294",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7294 accessories"
+ }
+ },
+ "system": "drone system 7294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48301195725736,
+ 38.13812596264049
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7295",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7295 accessories"
+ }
+ },
+ "system": "drone system 7295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23699280864217,
+ 38.99888719129948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7296",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7296 accessories"
+ }
+ },
+ "system": "drone system 7296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.92531141290104,
+ 39.01622925429059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7297",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7297 accessories"
+ }
+ },
+ "system": "drone system 7297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49374847052452,
+ 39.39416847959115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7298",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7298 accessories"
+ }
+ },
+ "system": "drone system 7298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4940607394497,
+ 38.30061761947028
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7299",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7299 accessories"
+ }
+ },
+ "system": "drone system 7299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4850708730402,
+ 39.464222365252844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7300",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7300 accessories"
+ }
+ },
+ "system": "drone system 7300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07813257529449,
+ 38.13617628789061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7301",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7301 accessories"
+ }
+ },
+ "system": "drone system 7301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33769642212692,
+ 38.87223671966249
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7302",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7302 accessories"
+ }
+ },
+ "system": "drone system 7302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56889612546496,
+ 38.98962429515579
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7303",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7303 accessories"
+ }
+ },
+ "system": "drone system 7303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87139762571226,
+ 38.115009732353336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7304",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7304 accessories"
+ }
+ },
+ "system": "drone system 7304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43405727674133,
+ 38.320592501342006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7305",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7305 accessories"
+ }
+ },
+ "system": "drone system 7305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27755555116939,
+ 39.2970293189771
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7306",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7306 accessories"
+ }
+ },
+ "system": "drone system 7306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60574093490482,
+ 39.225057219681965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7307",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7307 accessories"
+ }
+ },
+ "system": "drone system 7307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22893483307969,
+ 38.452642154934324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7308",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7308 accessories"
+ }
+ },
+ "system": "drone system 7308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27399136397844,
+ 38.728060252963104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7309",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7309 accessories"
+ }
+ },
+ "system": "drone system 7309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58733431077528,
+ 38.256652789638366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7310",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7310 accessories"
+ }
+ },
+ "system": "drone system 7310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67072548087121,
+ 39.345590442717864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7311",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7311 accessories"
+ }
+ },
+ "system": "drone system 7311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66794769501402,
+ 38.27124854188678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7312",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7312 accessories"
+ }
+ },
+ "system": "drone system 7312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92404075398902,
+ 39.24406702033221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7313",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7313 accessories"
+ }
+ },
+ "system": "drone system 7313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4932972264771,
+ 39.123904785593574
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7314",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7314 accessories"
+ }
+ },
+ "system": "drone system 7314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34387744953217,
+ 38.661608762299096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7315",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7315 accessories"
+ }
+ },
+ "system": "drone system 7315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51584633555017,
+ 38.8992117584688
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7316",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7316 accessories"
+ }
+ },
+ "system": "drone system 7316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22980600642664,
+ 39.433525309050076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7317",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7317 accessories"
+ }
+ },
+ "system": "drone system 7317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14103154053119,
+ 39.2311771125589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7318",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7318 accessories"
+ }
+ },
+ "system": "drone system 7318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34333136821103,
+ 38.599348820121115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7319",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7319 accessories"
+ }
+ },
+ "system": "drone system 7319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41215214035404,
+ 38.623456650124794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7320",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7320 accessories"
+ }
+ },
+ "system": "drone system 7320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75769914383237,
+ 38.232237752835196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7321",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7321 accessories"
+ }
+ },
+ "system": "drone system 7321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81168988855991,
+ 39.24216783677146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7322",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7322 accessories"
+ }
+ },
+ "system": "drone system 7322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9846338589385,
+ 39.55801669618059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7323",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7323 accessories"
+ }
+ },
+ "system": "drone system 7323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72263922905954,
+ 38.67293113158234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7324",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7324 accessories"
+ }
+ },
+ "system": "drone system 7324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11694795983625,
+ 38.62192730258256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7325",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7325 accessories"
+ }
+ },
+ "system": "drone system 7325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59203560978445,
+ 38.80525424746315
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7326",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7326 accessories"
+ }
+ },
+ "system": "drone system 7326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81163156272196,
+ 38.56609898380262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7327",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7327 accessories"
+ }
+ },
+ "system": "drone system 7327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71703139238812,
+ 39.4446152252637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7328",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7328 accessories"
+ }
+ },
+ "system": "drone system 7328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20736942467161,
+ 39.0297393310021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7329",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7329 accessories"
+ }
+ },
+ "system": "drone system 7329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38782743020059,
+ 38.70844721638804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7330",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7330 accessories"
+ }
+ },
+ "system": "drone system 7330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06872382937851,
+ 39.06089835505551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7331",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7331 accessories"
+ }
+ },
+ "system": "drone system 7331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42871735060663,
+ 38.26776327600153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7332",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7332 accessories"
+ }
+ },
+ "system": "drone system 7332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59110058443976,
+ 38.66318804433782
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7333",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7333 accessories"
+ }
+ },
+ "system": "drone system 7333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38575169418637,
+ 38.55243055239995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7334",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7334 accessories"
+ }
+ },
+ "system": "drone system 7334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16901658813437,
+ 38.480204903217114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7335",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7335 accessories"
+ }
+ },
+ "system": "drone system 7335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45847116794371,
+ 38.31873606615227
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7336",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7336 accessories"
+ }
+ },
+ "system": "drone system 7336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6109705818568,
+ 38.62073737992739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7337",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7337 accessories"
+ }
+ },
+ "system": "drone system 7337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1282348637958,
+ 39.57127324112916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7338",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7338 accessories"
+ }
+ },
+ "system": "drone system 7338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26968902671113,
+ 38.46083897537877
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7339",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7339 accessories"
+ }
+ },
+ "system": "drone system 7339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19063664418626,
+ 38.93208136920181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7340",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7340 accessories"
+ }
+ },
+ "system": "drone system 7340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61178190851253,
+ 39.40447604774525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7341",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7341 accessories"
+ }
+ },
+ "system": "drone system 7341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57872796819387,
+ 39.6150491937947
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7342",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7342 accessories"
+ }
+ },
+ "system": "drone system 7342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72630836414938,
+ 38.646671790884575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7343",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7343 accessories"
+ }
+ },
+ "system": "drone system 7343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89631861972177,
+ 38.820062251298765
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7344",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7344 accessories"
+ }
+ },
+ "system": "drone system 7344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69031021256858,
+ 38.67189753712115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7345",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7345 accessories"
+ }
+ },
+ "system": "drone system 7345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1529745823166,
+ 39.500475945814216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7346",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7346 accessories"
+ }
+ },
+ "system": "drone system 7346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70214057003334,
+ 38.528152154512966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7347",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7347 accessories"
+ }
+ },
+ "system": "drone system 7347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87191611281195,
+ 39.39693522000609
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7348",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7348 accessories"
+ }
+ },
+ "system": "drone system 7348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73895350644169,
+ 38.518971039103725
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7349",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7349 accessories"
+ }
+ },
+ "system": "drone system 7349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89004941703061,
+ 38.912338230404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7350",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7350 accessories"
+ }
+ },
+ "system": "drone system 7350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59140057576617,
+ 38.711026480384405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7351",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7351 accessories"
+ }
+ },
+ "system": "drone system 7351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33301692183288,
+ 38.40891637888585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7352",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7352 accessories"
+ }
+ },
+ "system": "drone system 7352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13839422950767,
+ 39.2795117831318
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7353",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7353 accessories"
+ }
+ },
+ "system": "drone system 7353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71071432974068,
+ 38.65385299208004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7354",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7354 accessories"
+ }
+ },
+ "system": "drone system 7354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80852126480222,
+ 38.760020736934514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7355",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7355 accessories"
+ }
+ },
+ "system": "drone system 7355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44158234953508,
+ 39.0410463792831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7356",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7356 accessories"
+ }
+ },
+ "system": "drone system 7356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67381888312237,
+ 39.366077733265534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7357",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7357 accessories"
+ }
+ },
+ "system": "drone system 7357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43568401063263,
+ 39.27790686746857
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7358 accessories"
+ }
+ },
+ "system": "drone system 7358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85335051606032,
+ 38.14085972124067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7359",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7359 accessories"
+ }
+ },
+ "system": "drone system 7359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27121609788301,
+ 39.338463105670584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7360",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7360 accessories"
+ }
+ },
+ "system": "drone system 7360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49002640446894,
+ 38.47712099752412
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7361",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7361 accessories"
+ }
+ },
+ "system": "drone system 7361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67540341915398,
+ 38.966044080568864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7362",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7362 accessories"
+ }
+ },
+ "system": "drone system 7362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.730956771587,
+ 39.406076674767775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7363",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7363 accessories"
+ }
+ },
+ "system": "drone system 7363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99104167045203,
+ 39.32264883157378
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7364",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7364 accessories"
+ }
+ },
+ "system": "drone system 7364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90335938607195,
+ 39.38150247618719
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7365",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7365 accessories"
+ }
+ },
+ "system": "drone system 7365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28899057622102,
+ 39.687972206184355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7366",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7366 accessories"
+ }
+ },
+ "system": "drone system 7366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58991937639638,
+ 39.16756212380448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7367",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7367 accessories"
+ }
+ },
+ "system": "drone system 7367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19588386799205,
+ 38.88814528635938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7368",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7368 accessories"
+ }
+ },
+ "system": "drone system 7368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10811880303963,
+ 38.032434626879535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7369",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7369 accessories"
+ }
+ },
+ "system": "drone system 7369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79833597639924,
+ 39.62231892403529
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7370",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7370 accessories"
+ }
+ },
+ "system": "drone system 7370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53244343824106,
+ 39.048574340965374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7371",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7371 accessories"
+ }
+ },
+ "system": "drone system 7371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65155173502023,
+ 38.923487413577305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7372",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7372 accessories"
+ }
+ },
+ "system": "drone system 7372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49107719081493,
+ 38.55065989939556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7373",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7373 accessories"
+ }
+ },
+ "system": "drone system 7373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23822737439097,
+ 39.61457056455982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7374",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7374 accessories"
+ }
+ },
+ "system": "drone system 7374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82474215922443,
+ 38.47759600942965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7375",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7375 accessories"
+ }
+ },
+ "system": "drone system 7375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24048358434298,
+ 38.73822112428012
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7376",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7376 accessories"
+ }
+ },
+ "system": "drone system 7376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02915089448044,
+ 39.358790049396674
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7377",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7377 accessories"
+ }
+ },
+ "system": "drone system 7377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82665100536424,
+ 39.61205603812438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7378",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7378 accessories"
+ }
+ },
+ "system": "drone system 7378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46338659757079,
+ 38.76717711600591
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7379",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7379 accessories"
+ }
+ },
+ "system": "drone system 7379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77442821781571,
+ 39.45421004907785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7380",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7380 accessories"
+ }
+ },
+ "system": "drone system 7380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24320743816354,
+ 38.67852145456281
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7381",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7381 accessories"
+ }
+ },
+ "system": "drone system 7381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7841570086057,
+ 39.767506564947354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7382",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7382 accessories"
+ }
+ },
+ "system": "drone system 7382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79934961949293,
+ 39.260255130036924
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7383",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7383 accessories"
+ }
+ },
+ "system": "drone system 7383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1385000226032,
+ 39.70379722049766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7384",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7384 accessories"
+ }
+ },
+ "system": "drone system 7384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8846976281523,
+ 39.354112136159685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7385",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7385 accessories"
+ }
+ },
+ "system": "drone system 7385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63465617657974,
+ 38.74797014284508
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7386",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7386 accessories"
+ }
+ },
+ "system": "drone system 7386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61629765578182,
+ 38.30728384919269
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7387",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7387 accessories"
+ }
+ },
+ "system": "drone system 7387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44257649453033,
+ 39.1285259794125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7388",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7388 accessories"
+ }
+ },
+ "system": "drone system 7388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2018347559466,
+ 39.26441414520831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7389",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7389 accessories"
+ }
+ },
+ "system": "drone system 7389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87821194016021,
+ 39.590169915499345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7390",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7390 accessories"
+ }
+ },
+ "system": "drone system 7390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39245315233065,
+ 39.29728823660663
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7391",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7391 accessories"
+ }
+ },
+ "system": "drone system 7391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3131695782756,
+ 38.18323778672523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7392",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7392 accessories"
+ }
+ },
+ "system": "drone system 7392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75210218239332,
+ 38.49911870621883
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7393",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7393 accessories"
+ }
+ },
+ "system": "drone system 7393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.27612850908098,
+ 38.65934791998359
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7394",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7394 accessories"
+ }
+ },
+ "system": "drone system 7394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36700546960827,
+ 38.22098406531038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7395",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7395 accessories"
+ }
+ },
+ "system": "drone system 7395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23754736260616,
+ 38.78754619401187
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7396",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7396 accessories"
+ }
+ },
+ "system": "drone system 7396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1621562982219,
+ 39.42292810739319
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7397",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7397 accessories"
+ }
+ },
+ "system": "drone system 7397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52075555960603,
+ 38.8250629668222
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7398",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7398 accessories"
+ }
+ },
+ "system": "drone system 7398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94919250799082,
+ 39.128720031727255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7399",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7399 accessories"
+ }
+ },
+ "system": "drone system 7399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50537999997269,
+ 39.19948333409855
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7400",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7400 accessories"
+ }
+ },
+ "system": "drone system 7400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77598051747958,
+ 38.71157313151111
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7401",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7401 accessories"
+ }
+ },
+ "system": "drone system 7401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7926167978814,
+ 39.534084389295835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7402",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7402 accessories"
+ }
+ },
+ "system": "drone system 7402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68273763201756,
+ 39.2013690670119
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7403",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7403 accessories"
+ }
+ },
+ "system": "drone system 7403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43833594513866,
+ 38.96487385302289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7404",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7404 accessories"
+ }
+ },
+ "system": "drone system 7404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0852979445455,
+ 38.76197572982338
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7405",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7405 accessories"
+ }
+ },
+ "system": "drone system 7405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6992660030645,
+ 38.158479358357475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7406",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7406 accessories"
+ }
+ },
+ "system": "drone system 7406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3052804212247,
+ 39.721685771474945
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7407",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7407 accessories"
+ }
+ },
+ "system": "drone system 7407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26485532979487,
+ 38.54074535892094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7408",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7408 accessories"
+ }
+ },
+ "system": "drone system 7408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59253280570279,
+ 39.16080214897552
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7409",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7409 accessories"
+ }
+ },
+ "system": "drone system 7409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38931041684428,
+ 39.3439789907312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7410",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7410 accessories"
+ }
+ },
+ "system": "drone system 7410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96116198743502,
+ 39.63385440823029
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7411",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7411 accessories"
+ }
+ },
+ "system": "drone system 7411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37733127601645,
+ 38.83523112507964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7412",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7412 accessories"
+ }
+ },
+ "system": "drone system 7412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72106773270906,
+ 39.371913447529145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7413",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7413 accessories"
+ }
+ },
+ "system": "drone system 7413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89632544933752,
+ 38.99948174388452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7414",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7414 accessories"
+ }
+ },
+ "system": "drone system 7414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60205116375663,
+ 38.77826553671335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7415",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7415 accessories"
+ }
+ },
+ "system": "drone system 7415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49682284822723,
+ 39.529088590236356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7416",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7416 accessories"
+ }
+ },
+ "system": "drone system 7416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78609597470226,
+ 39.484317461148436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7417",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7417 accessories"
+ }
+ },
+ "system": "drone system 7417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02238562441788,
+ 38.5875059440163
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7418",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7418 accessories"
+ }
+ },
+ "system": "drone system 7418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4170313747971,
+ 39.3568309134661
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7419",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7419 accessories"
+ }
+ },
+ "system": "drone system 7419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2491563240717,
+ 38.82563544538438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7420",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7420 accessories"
+ }
+ },
+ "system": "drone system 7420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56623077994436,
+ 38.69420407773053
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7421",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7421 accessories"
+ }
+ },
+ "system": "drone system 7421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78318496824852,
+ 38.30201730083004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7422",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7422 accessories"
+ }
+ },
+ "system": "drone system 7422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96525772772655,
+ 39.10280603426706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7423",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7423 accessories"
+ }
+ },
+ "system": "drone system 7423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47073326151522,
+ 39.34107412385664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7424",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7424 accessories"
+ }
+ },
+ "system": "drone system 7424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61482743095418,
+ 38.82205710681407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7425",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7425 accessories"
+ }
+ },
+ "system": "drone system 7425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44007224636182,
+ 38.96643046057465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7426",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7426 accessories"
+ }
+ },
+ "system": "drone system 7426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8417181273638,
+ 39.193335503494374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7427",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7427 accessories"
+ }
+ },
+ "system": "drone system 7427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28721550043294,
+ 39.12620557591126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7428",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7428 accessories"
+ }
+ },
+ "system": "drone system 7428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8525105343131,
+ 38.28757293939976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7429",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7429 accessories"
+ }
+ },
+ "system": "drone system 7429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74586749390615,
+ 39.643040135331916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7430",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7430 accessories"
+ }
+ },
+ "system": "drone system 7430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40464710497477,
+ 38.61535554860419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7431",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7431 accessories"
+ }
+ },
+ "system": "drone system 7431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57111503444223,
+ 38.927962498951125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7432",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7432 accessories"
+ }
+ },
+ "system": "drone system 7432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45437737157839,
+ 39.63903739528717
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7433",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7433 accessories"
+ }
+ },
+ "system": "drone system 7433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91129184380631,
+ 39.086610571900884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7434",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7434 accessories"
+ }
+ },
+ "system": "drone system 7434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70586290519798,
+ 38.10843226959412
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7435",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7435 accessories"
+ }
+ },
+ "system": "drone system 7435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64399088887804,
+ 39.0124114936528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7436",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7436 accessories"
+ }
+ },
+ "system": "drone system 7436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6598941126693,
+ 39.33740986660342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7437",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7437 accessories"
+ }
+ },
+ "system": "drone system 7437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99676638018317,
+ 38.76595364582551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7438",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7438 accessories"
+ }
+ },
+ "system": "drone system 7438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17682597383408,
+ 39.160271252190014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7439",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7439 accessories"
+ }
+ },
+ "system": "drone system 7439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50561858371906,
+ 38.33883887351462
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7440",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7440 accessories"
+ }
+ },
+ "system": "drone system 7440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2472464468623,
+ 39.675248398478715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7441",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7441 accessories"
+ }
+ },
+ "system": "drone system 7441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7900500593174,
+ 39.01808190065644
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7442",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7442 accessories"
+ }
+ },
+ "system": "drone system 7442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74011609220346,
+ 38.88384008420573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7443",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7443 accessories"
+ }
+ },
+ "system": "drone system 7443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69381199815942,
+ 39.05180459603684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7444",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7444 accessories"
+ }
+ },
+ "system": "drone system 7444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15944849247178,
+ 38.7172203545566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7445",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7445 accessories"
+ }
+ },
+ "system": "drone system 7445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23247680878377,
+ 39.62075854494946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7446",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7446 accessories"
+ }
+ },
+ "system": "drone system 7446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29234223751992,
+ 38.693602660082405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7447",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7447 accessories"
+ }
+ },
+ "system": "drone system 7447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55933613720914,
+ 38.43659567784151
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7448",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7448 accessories"
+ }
+ },
+ "system": "drone system 7448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31100947075083,
+ 38.63945854704682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7449",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7449 accessories"
+ }
+ },
+ "system": "drone system 7449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80932949220058,
+ 39.0485161397696
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7450",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7450 accessories"
+ }
+ },
+ "system": "drone system 7450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39130149652368,
+ 38.75256354307542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7451",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7451 accessories"
+ }
+ },
+ "system": "drone system 7451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40773832791564,
+ 38.66501351258016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7452",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7452 accessories"
+ }
+ },
+ "system": "drone system 7452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74508577333727,
+ 39.17488086827694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7453",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7453 accessories"
+ }
+ },
+ "system": "drone system 7453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34812855503748,
+ 39.12880841675736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7454",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7454 accessories"
+ }
+ },
+ "system": "drone system 7454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20690390736007,
+ 38.8077902486085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7455",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7455 accessories"
+ }
+ },
+ "system": "drone system 7455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64842793064706,
+ 39.37813419015305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7456",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7456 accessories"
+ }
+ },
+ "system": "drone system 7456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76983331512324,
+ 38.69150384024451
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7457",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7457 accessories"
+ }
+ },
+ "system": "drone system 7457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92758044929394,
+ 38.88363391515006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7458",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7458 accessories"
+ }
+ },
+ "system": "drone system 7458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64958824976826,
+ 39.53501264234755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7459",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7459 accessories"
+ }
+ },
+ "system": "drone system 7459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46464011145052,
+ 38.50280645370487
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7460",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7460 accessories"
+ }
+ },
+ "system": "drone system 7460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0563401351686,
+ 39.73606082037621
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7461",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7461 accessories"
+ }
+ },
+ "system": "drone system 7461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70872473758311,
+ 38.90713836608785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7462",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7462 accessories"
+ }
+ },
+ "system": "drone system 7462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61558113925437,
+ 38.37000536615779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7463",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7463 accessories"
+ }
+ },
+ "system": "drone system 7463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25058365849574,
+ 39.37163110113852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7464",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7464 accessories"
+ }
+ },
+ "system": "drone system 7464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69580745590913,
+ 39.28982395157473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7465",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7465 accessories"
+ }
+ },
+ "system": "drone system 7465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9866268404612,
+ 38.84237457817296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7466",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7466 accessories"
+ }
+ },
+ "system": "drone system 7466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33538495019084,
+ 39.005465314589784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7467",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7467 accessories"
+ }
+ },
+ "system": "drone system 7467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85428071099467,
+ 38.53751576068158
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7468",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7468 accessories"
+ }
+ },
+ "system": "drone system 7468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54643320939803,
+ 38.61378171839841
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7469",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7469 accessories"
+ }
+ },
+ "system": "drone system 7469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75821834013463,
+ 38.50575311539768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7470",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7470 accessories"
+ }
+ },
+ "system": "drone system 7470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23524231356693,
+ 38.721035179980504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7471",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7471 accessories"
+ }
+ },
+ "system": "drone system 7471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72203685577664,
+ 39.4990335172636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7472",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7472 accessories"
+ }
+ },
+ "system": "drone system 7472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26941456172923,
+ 38.984532638306156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7473",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7473 accessories"
+ }
+ },
+ "system": "drone system 7473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45972295330324,
+ 39.56284546652351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7474",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7474 accessories"
+ }
+ },
+ "system": "drone system 7474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1152578777215,
+ 38.36058543690044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7475",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7475 accessories"
+ }
+ },
+ "system": "drone system 7475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26081573037267,
+ 38.50328014667698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7476",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7476 accessories"
+ }
+ },
+ "system": "drone system 7476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16952362643096,
+ 38.656537925455346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7477",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7477 accessories"
+ }
+ },
+ "system": "drone system 7477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06584926164146,
+ 38.794419609237444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7478",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7478 accessories"
+ }
+ },
+ "system": "drone system 7478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06641957167483,
+ 38.64082559721812
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7479",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7479 accessories"
+ }
+ },
+ "system": "drone system 7479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42931696520002,
+ 39.69642386995101
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7480",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7480 accessories"
+ }
+ },
+ "system": "drone system 7480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15752226651763,
+ 39.07691531196879
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7481",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7481 accessories"
+ }
+ },
+ "system": "drone system 7481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64989228365943,
+ 39.547413584240516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7482",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7482 accessories"
+ }
+ },
+ "system": "drone system 7482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87481648454455,
+ 39.09855472233126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7483",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7483 accessories"
+ }
+ },
+ "system": "drone system 7483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51601628295244,
+ 38.26973320472592
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7484",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7484 accessories"
+ }
+ },
+ "system": "drone system 7484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01699923039057,
+ 38.111568120162
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7485",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7485 accessories"
+ }
+ },
+ "system": "drone system 7485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20592605487104,
+ 39.48956738363378
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7486",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7486 accessories"
+ }
+ },
+ "system": "drone system 7486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54932830544772,
+ 38.72608167807711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7487",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7487 accessories"
+ }
+ },
+ "system": "drone system 7487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96078138380935,
+ 39.33084751436683
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7488",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7488 accessories"
+ }
+ },
+ "system": "drone system 7488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42857091874042,
+ 39.23863690371995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7489",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7489 accessories"
+ }
+ },
+ "system": "drone system 7489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57966633354206,
+ 38.294906783042705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7490",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7490 accessories"
+ }
+ },
+ "system": "drone system 7490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4718550411233,
+ 38.46341458046364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7491",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7491 accessories"
+ }
+ },
+ "system": "drone system 7491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58205511972643,
+ 38.72055745237503
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7492",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7492 accessories"
+ }
+ },
+ "system": "drone system 7492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34294133922377,
+ 38.32027505400616
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7493",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7493 accessories"
+ }
+ },
+ "system": "drone system 7493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6764026647244,
+ 39.451587693691586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7494",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7494 accessories"
+ }
+ },
+ "system": "drone system 7494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.14159991939654,
+ 38.87569961879093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7495",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7495 accessories"
+ }
+ },
+ "system": "drone system 7495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20347258553205,
+ 38.31461127667917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7496",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7496 accessories"
+ }
+ },
+ "system": "drone system 7496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42974224840131,
+ 38.29700620714441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7497",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7497 accessories"
+ }
+ },
+ "system": "drone system 7497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09800984896066,
+ 38.23744769068038
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7498",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7498 accessories"
+ }
+ },
+ "system": "drone system 7498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36378760527083,
+ 38.253029719259345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7499",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7499 accessories"
+ }
+ },
+ "system": "drone system 7499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30241222578515,
+ 38.88597261698847
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7500",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7500 accessories"
+ }
+ },
+ "system": "drone system 7500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23163130208629,
+ 38.844512967525446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7501",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7501 accessories"
+ }
+ },
+ "system": "drone system 7501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58023509213491,
+ 38.31668654627666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7502",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7502 accessories"
+ }
+ },
+ "system": "drone system 7502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77096930465781,
+ 38.486958995057556
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7503",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7503 accessories"
+ }
+ },
+ "system": "drone system 7503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52722749932911,
+ 39.33036872805844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7504",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7504 accessories"
+ }
+ },
+ "system": "drone system 7504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95616385400375,
+ 38.37895501779155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7505 accessories"
+ }
+ },
+ "system": "drone system 7505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9902627349814,
+ 39.27901105423712
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7506",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7506 accessories"
+ }
+ },
+ "system": "drone system 7506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5213819754331,
+ 39.47598265766164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7507",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7507 accessories"
+ }
+ },
+ "system": "drone system 7507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5405558262469,
+ 39.45509129475113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7508",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7508 accessories"
+ }
+ },
+ "system": "drone system 7508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78160559451902,
+ 38.83266881975047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7509",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7509 accessories"
+ }
+ },
+ "system": "drone system 7509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92645761944117,
+ 38.75245817477691
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7510",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7510 accessories"
+ }
+ },
+ "system": "drone system 7510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85154856461172,
+ 39.46591221905293
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7511",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7511 accessories"
+ }
+ },
+ "system": "drone system 7511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89869399516552,
+ 38.268138360996446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7512",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7512 accessories"
+ }
+ },
+ "system": "drone system 7512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95498127977125,
+ 38.13220767275562
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7513",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7513 accessories"
+ }
+ },
+ "system": "drone system 7513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31414346020989,
+ 39.14890517735588
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7514",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7514 accessories"
+ }
+ },
+ "system": "drone system 7514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16124442779049,
+ 38.778984647366094
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7515",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7515 accessories"
+ }
+ },
+ "system": "drone system 7515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2403854808729,
+ 38.17218328479518
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7516",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7516 accessories"
+ }
+ },
+ "system": "drone system 7516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.113011549658,
+ 39.612520031983735
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7517",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7517 accessories"
+ }
+ },
+ "system": "drone system 7517",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34276411260741,
+ 39.247085173480876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7518",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7518 accessories"
+ }
+ },
+ "system": "drone system 7518",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87761511441683,
+ 39.71688345874057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7519",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7519 accessories"
+ }
+ },
+ "system": "drone system 7519",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07996439613844,
+ 38.694160259112465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7520",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7520 accessories"
+ }
+ },
+ "system": "drone system 7520",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8412983301764,
+ 39.15917711091952
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7521",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7521 accessories"
+ }
+ },
+ "system": "drone system 7521",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82737108569985,
+ 39.09706890224452
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7522",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7522 accessories"
+ }
+ },
+ "system": "drone system 7522",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88540296236741,
+ 39.35963104205483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7523",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7523 accessories"
+ }
+ },
+ "system": "drone system 7523",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78198587167368,
+ 38.456601158878435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7524",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7524 accessories"
+ }
+ },
+ "system": "drone system 7524",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35655681492013,
+ 39.63113921844272
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7525",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7525 accessories"
+ }
+ },
+ "system": "drone system 7525",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07298018914028,
+ 39.6942967284711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7526",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7526 accessories"
+ }
+ },
+ "system": "drone system 7526",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11896391197482,
+ 39.59978135494772
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7527",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7527 accessories"
+ }
+ },
+ "system": "drone system 7527",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50489861747607,
+ 39.411479067294216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7528",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7528 accessories"
+ }
+ },
+ "system": "drone system 7528",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52604872112691,
+ 39.59309522622852
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7529",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7529 accessories"
+ }
+ },
+ "system": "drone system 7529",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10488204115042,
+ 39.037352326722285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7530",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7530 accessories"
+ }
+ },
+ "system": "drone system 7530",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74903324037842,
+ 38.45328568274769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7531",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7531 accessories"
+ }
+ },
+ "system": "drone system 7531",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28382662930183,
+ 38.7335091530264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7532",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7532 accessories"
+ }
+ },
+ "system": "drone system 7532",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94169424575169,
+ 38.302761155088646
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7533",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7533 accessories"
+ }
+ },
+ "system": "drone system 7533",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94430240051601,
+ 38.25662589301396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7534",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7534 accessories"
+ }
+ },
+ "system": "drone system 7534",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85816833326764,
+ 38.50505055314194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7535",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7535 accessories"
+ }
+ },
+ "system": "drone system 7535",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83006378541062,
+ 38.3746976092574
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7536",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7536 accessories"
+ }
+ },
+ "system": "drone system 7536",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2649619334953,
+ 38.288911551742316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7537",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7537 accessories"
+ }
+ },
+ "system": "drone system 7537",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06895211365125,
+ 38.08655063675942
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7538",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7538 accessories"
+ }
+ },
+ "system": "drone system 7538",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89439270328033,
+ 38.85999917317403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7539",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7539 accessories"
+ }
+ },
+ "system": "drone system 7539",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2880734113377,
+ 39.35620496376667
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7540",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7540 accessories"
+ }
+ },
+ "system": "drone system 7540",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19021988160793,
+ 38.89739673604014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7541",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7541 accessories"
+ }
+ },
+ "system": "drone system 7541",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93514121969797,
+ 39.24511710316186
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7542",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7542 accessories"
+ }
+ },
+ "system": "drone system 7542",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00412865432452,
+ 38.38793017386042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7543",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7543 accessories"
+ }
+ },
+ "system": "drone system 7543",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59286959145665,
+ 39.1494375789362
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7544",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7544 accessories"
+ }
+ },
+ "system": "drone system 7544",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64431844579836,
+ 39.246065165216464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7545",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7545 accessories"
+ }
+ },
+ "system": "drone system 7545",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3633610132339,
+ 39.02358507662283
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7546",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7546 accessories"
+ }
+ },
+ "system": "drone system 7546",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91660580998715,
+ 38.42229392404881
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7547",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7547 accessories"
+ }
+ },
+ "system": "drone system 7547",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0555844199946,
+ 39.18251864968377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7548",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7548 accessories"
+ }
+ },
+ "system": "drone system 7548",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27493835415774,
+ 39.30182951019935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7549",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7549 accessories"
+ }
+ },
+ "system": "drone system 7549",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57552556808814,
+ 39.16851316149778
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7550",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7550 accessories"
+ }
+ },
+ "system": "drone system 7550",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0140739380293,
+ 39.735835361656335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7551",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7551 accessories"
+ }
+ },
+ "system": "drone system 7551",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51433038325332,
+ 39.255119008375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7552",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7552 accessories"
+ }
+ },
+ "system": "drone system 7552",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47257527978628,
+ 38.502391774814825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7553",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7553 accessories"
+ }
+ },
+ "system": "drone system 7553",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7329593173826,
+ 38.529092741331546
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7554",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7554 accessories"
+ }
+ },
+ "system": "drone system 7554",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12842026503142,
+ 39.73753905906487
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7555",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7555 accessories"
+ }
+ },
+ "system": "drone system 7555",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73799577519839,
+ 38.55422555683168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7556",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7556 accessories"
+ }
+ },
+ "system": "drone system 7556",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64583718014819,
+ 38.684117316128045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7557",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7557 accessories"
+ }
+ },
+ "system": "drone system 7557",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97138226395444,
+ 38.83611200653084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7558",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7558 accessories"
+ }
+ },
+ "system": "drone system 7558",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85184273592948,
+ 38.65160426398306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7559",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7559 accessories"
+ }
+ },
+ "system": "drone system 7559",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3794531698396,
+ 38.18440397629254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7560",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7560 accessories"
+ }
+ },
+ "system": "drone system 7560",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01971351499971,
+ 38.06383553178057
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7561",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7561 accessories"
+ }
+ },
+ "system": "drone system 7561",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51134111408658,
+ 38.72497784926325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7562",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7562 accessories"
+ }
+ },
+ "system": "drone system 7562",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58200223200097,
+ 38.577285580700085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7563",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7563 accessories"
+ }
+ },
+ "system": "drone system 7563",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54374024252483,
+ 38.409495577894035
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7564",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7564 accessories"
+ }
+ },
+ "system": "drone system 7564",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.79515792796418,
+ 39.00115034922007
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7565",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7565 accessories"
+ }
+ },
+ "system": "drone system 7565",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45565069985791,
+ 39.36749206864445
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7566",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7566 accessories"
+ }
+ },
+ "system": "drone system 7566",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4272315262794,
+ 39.106280377370865
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7567",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7567 accessories"
+ }
+ },
+ "system": "drone system 7567",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69193670685694,
+ 39.04841558236342
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7568",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7568 accessories"
+ }
+ },
+ "system": "drone system 7568",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37543658739429,
+ 38.49477070215439
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7569",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7569 accessories"
+ }
+ },
+ "system": "drone system 7569",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49581582232545,
+ 38.63954852992139
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7570",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7570 accessories"
+ }
+ },
+ "system": "drone system 7570",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0471917709144,
+ 39.25754286039239
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7571",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7571 accessories"
+ }
+ },
+ "system": "drone system 7571",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80454303820282,
+ 38.7258691587378
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7572",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7572 accessories"
+ }
+ },
+ "system": "drone system 7572",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.877281656464,
+ 38.9600593955554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7573",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7573 accessories"
+ }
+ },
+ "system": "drone system 7573",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01280182182957,
+ 39.5354488923988
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7574",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7574 accessories"
+ }
+ },
+ "system": "drone system 7574",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92602765231034,
+ 38.64718127935533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7575",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7575 accessories"
+ }
+ },
+ "system": "drone system 7575",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11670055391205,
+ 39.478905083093956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7576",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7576 accessories"
+ }
+ },
+ "system": "drone system 7576",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35496023884794,
+ 38.90417120880042
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7577",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7577 accessories"
+ }
+ },
+ "system": "drone system 7577",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64615317373611,
+ 39.00764907177911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7578",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7578 accessories"
+ }
+ },
+ "system": "drone system 7578",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24353170290034,
+ 39.41269434459928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7579",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7579 accessories"
+ }
+ },
+ "system": "drone system 7579",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88653789062815,
+ 38.930531765753365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7580",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7580 accessories"
+ }
+ },
+ "system": "drone system 7580",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34701003788493,
+ 38.64593057907482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7581",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7581 accessories"
+ }
+ },
+ "system": "drone system 7581",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85494705290229,
+ 38.75570072978733
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7582",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7582 accessories"
+ }
+ },
+ "system": "drone system 7582",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66221111257106,
+ 38.648112447505326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7583",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7583 accessories"
+ }
+ },
+ "system": "drone system 7583",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62724465964139,
+ 39.265062172975526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7584",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7584 accessories"
+ }
+ },
+ "system": "drone system 7584",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85142416101063,
+ 39.110896083864816
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7585",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7585 accessories"
+ }
+ },
+ "system": "drone system 7585",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16719161951738,
+ 38.73823298762962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7586",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7586 accessories"
+ }
+ },
+ "system": "drone system 7586",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39493425059472,
+ 39.0355203986393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7587",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7587 accessories"
+ }
+ },
+ "system": "drone system 7587",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1366140082885,
+ 38.32774220915212
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7588",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7588 accessories"
+ }
+ },
+ "system": "drone system 7588",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52826017840572,
+ 39.59595220669843
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7589",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7589 accessories"
+ }
+ },
+ "system": "drone system 7589",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33119381971365,
+ 38.55900449422145
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7590",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7590 accessories"
+ }
+ },
+ "system": "drone system 7590",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6304303675528,
+ 39.07082616559324
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7591",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7591 accessories"
+ }
+ },
+ "system": "drone system 7591",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73573426469544,
+ 39.55795504580172
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7592",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7592 accessories"
+ }
+ },
+ "system": "drone system 7592",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5841972269772,
+ 39.50022143825532
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7593",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7593 accessories"
+ }
+ },
+ "system": "drone system 7593",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64079533872007,
+ 38.7041989760436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7594",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7594 accessories"
+ }
+ },
+ "system": "drone system 7594",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82557189123165,
+ 39.28757475950984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7595",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7595 accessories"
+ }
+ },
+ "system": "drone system 7595",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99465396467811,
+ 39.756944480611956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7596",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7596 accessories"
+ }
+ },
+ "system": "drone system 7596",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45876280780998,
+ 39.17646358711977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7597",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7597 accessories"
+ }
+ },
+ "system": "drone system 7597",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95241317254137,
+ 39.494581843386996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7598",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7598 accessories"
+ }
+ },
+ "system": "drone system 7598",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2766286443154,
+ 38.50254520467375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7599",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7599 accessories"
+ }
+ },
+ "system": "drone system 7599",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87100230989438,
+ 38.8860133060289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7600",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7600 accessories"
+ }
+ },
+ "system": "drone system 7600",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05586205831179,
+ 39.230316509559266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7601",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7601 accessories"
+ }
+ },
+ "system": "drone system 7601",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73544308618962,
+ 39.144059437482305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7602",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7602 accessories"
+ }
+ },
+ "system": "drone system 7602",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89808859772435,
+ 39.33989684961185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7603",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7603 accessories"
+ }
+ },
+ "system": "drone system 7603",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6755472536396,
+ 39.22487652125943
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7604",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7604 accessories"
+ }
+ },
+ "system": "drone system 7604",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14615293429902,
+ 39.324045737578246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7605",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7605 accessories"
+ }
+ },
+ "system": "drone system 7605",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56394572662583,
+ 38.38775568917377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7606",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7606 accessories"
+ }
+ },
+ "system": "drone system 7606",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68299217996793,
+ 39.18513200983479
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7607",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7607 accessories"
+ }
+ },
+ "system": "drone system 7607",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75193606795034,
+ 38.9884786097205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7608",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7608 accessories"
+ }
+ },
+ "system": "drone system 7608",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30487946196993,
+ 39.27712122665805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7609",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7609 accessories"
+ }
+ },
+ "system": "drone system 7609",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68392373412469,
+ 38.89559036869433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7610",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7610 accessories"
+ }
+ },
+ "system": "drone system 7610",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.512028040367,
+ 39.211036613098614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7611",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7611 accessories"
+ }
+ },
+ "system": "drone system 7611",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26684554021797,
+ 39.213032245465925
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7612",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7612 accessories"
+ }
+ },
+ "system": "drone system 7612",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44726542649306,
+ 39.50403122425847
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7613",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7613 accessories"
+ }
+ },
+ "system": "drone system 7613",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55616784338633,
+ 38.322753648067085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7614",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7614 accessories"
+ }
+ },
+ "system": "drone system 7614",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99607602915363,
+ 38.67706280283113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7615",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7615 accessories"
+ }
+ },
+ "system": "drone system 7615",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35374725680312,
+ 39.25824722195023
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7616",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7616 accessories"
+ }
+ },
+ "system": "drone system 7616",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82184527056243,
+ 38.26588568484892
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7617",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7617 accessories"
+ }
+ },
+ "system": "drone system 7617",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42749113004179,
+ 39.30971390317067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7618",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7618 accessories"
+ }
+ },
+ "system": "drone system 7618",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36895439593567,
+ 39.42918922912779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7619",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7619 accessories"
+ }
+ },
+ "system": "drone system 7619",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69876634482297,
+ 38.47814577593144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7620",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7620 accessories"
+ }
+ },
+ "system": "drone system 7620",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19904601938065,
+ 38.31469394899078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7621",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7621 accessories"
+ }
+ },
+ "system": "drone system 7621",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86270311334914,
+ 39.23286494273726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7622",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7622 accessories"
+ }
+ },
+ "system": "drone system 7622",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87111583174106,
+ 38.701713892315155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7623",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7623 accessories"
+ }
+ },
+ "system": "drone system 7623",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.18024702171785,
+ 39.09942141580748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7624",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7624 accessories"
+ }
+ },
+ "system": "drone system 7624",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00815006419414,
+ 39.721374343438896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7625",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7625 accessories"
+ }
+ },
+ "system": "drone system 7625",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.16781425988724,
+ 38.87441121390706
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7626",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7626 accessories"
+ }
+ },
+ "system": "drone system 7626",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65638965076548,
+ 39.12267702026411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7627",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7627 accessories"
+ }
+ },
+ "system": "drone system 7627",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65298618785745,
+ 39.44160664977815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7628",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7628 accessories"
+ }
+ },
+ "system": "drone system 7628",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81916634732852,
+ 39.34399880271257
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7629",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7629 accessories"
+ }
+ },
+ "system": "drone system 7629",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48301482491536,
+ 39.55858854735882
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7630",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7630 accessories"
+ }
+ },
+ "system": "drone system 7630",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15423031067543,
+ 38.8999275353997
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7631",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7631 accessories"
+ }
+ },
+ "system": "drone system 7631",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16099419380566,
+ 39.76764671654472
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7632",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7632 accessories"
+ }
+ },
+ "system": "drone system 7632",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99973389011467,
+ 38.876307281230474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7633",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7633 accessories"
+ }
+ },
+ "system": "drone system 7633",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26610131179761,
+ 39.25817116690079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7634",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7634 accessories"
+ }
+ },
+ "system": "drone system 7634",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33030495498136,
+ 38.574640815786886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7635",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7635 accessories"
+ }
+ },
+ "system": "drone system 7635",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71932538554887,
+ 39.53825573953566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7636",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7636 accessories"
+ }
+ },
+ "system": "drone system 7636",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.908511617818,
+ 38.194976316990605
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7637",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7637 accessories"
+ }
+ },
+ "system": "drone system 7637",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03598715289432,
+ 38.89041240198859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7638",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7638 accessories"
+ }
+ },
+ "system": "drone system 7638",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83918325655964,
+ 39.15632600972107
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7639",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7639 accessories"
+ }
+ },
+ "system": "drone system 7639",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90412348514508,
+ 39.546032952048655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7640",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7640 accessories"
+ }
+ },
+ "system": "drone system 7640",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6715062956454,
+ 38.48283846292795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7641",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7641 accessories"
+ }
+ },
+ "system": "drone system 7641",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32268413138767,
+ 39.04616035751828
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7642",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7642 accessories"
+ }
+ },
+ "system": "drone system 7642",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2335174287894,
+ 39.36224022325564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7643",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7643 accessories"
+ }
+ },
+ "system": "drone system 7643",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21107699708737,
+ 38.05532152283543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7644",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7644 accessories"
+ }
+ },
+ "system": "drone system 7644",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40778705619225,
+ 38.09687884090195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7645",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7645 accessories"
+ }
+ },
+ "system": "drone system 7645",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19475032313723,
+ 39.32939508901444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7646",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7646 accessories"
+ }
+ },
+ "system": "drone system 7646",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11039915137503,
+ 39.1359882926739
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7647",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7647 accessories"
+ }
+ },
+ "system": "drone system 7647",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32073491636251,
+ 39.39689324326096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7648",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7648 accessories"
+ }
+ },
+ "system": "drone system 7648",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33419103953781,
+ 38.89570667942698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7649",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7649 accessories"
+ }
+ },
+ "system": "drone system 7649",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56062955735531,
+ 38.724043245811764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7650",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7650 accessories"
+ }
+ },
+ "system": "drone system 7650",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53918186479993,
+ 38.910479201516125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7651",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7651 accessories"
+ }
+ },
+ "system": "drone system 7651",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86992954302634,
+ 38.67690235160078
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7652",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7652 accessories"
+ }
+ },
+ "system": "drone system 7652",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66561962622481,
+ 38.34593947170772
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7653",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7653 accessories"
+ }
+ },
+ "system": "drone system 7653",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46960381866775,
+ 38.52170985971551
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7654",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7654 accessories"
+ }
+ },
+ "system": "drone system 7654",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93766677657445,
+ 38.9693518820724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7655",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7655 accessories"
+ }
+ },
+ "system": "drone system 7655",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22190178210288,
+ 38.41748213159306
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7656",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7656 accessories"
+ }
+ },
+ "system": "drone system 7656",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63605733569655,
+ 38.50219801786752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7657",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7657 accessories"
+ }
+ },
+ "system": "drone system 7657",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96532717610228,
+ 38.711689289212515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7658",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7658 accessories"
+ }
+ },
+ "system": "drone system 7658",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64257159752103,
+ 39.04681760669386
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7659",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7659 accessories"
+ }
+ },
+ "system": "drone system 7659",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21893862904614,
+ 39.079445508892846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7660",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7660 accessories"
+ }
+ },
+ "system": "drone system 7660",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60443555192893,
+ 39.09835700819005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7661",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7661 accessories"
+ }
+ },
+ "system": "drone system 7661",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1132569493272,
+ 38.34143050772881
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7662",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7662 accessories"
+ }
+ },
+ "system": "drone system 7662",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7493468994233,
+ 38.69381320748181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7663",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7663 accessories"
+ }
+ },
+ "system": "drone system 7663",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44996756636365,
+ 39.505470489743736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7664",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7664 accessories"
+ }
+ },
+ "system": "drone system 7664",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88108628694641,
+ 39.31066979976711
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7665",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7665 accessories"
+ }
+ },
+ "system": "drone system 7665",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21897843841465,
+ 38.858691278131595
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7666",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7666 accessories"
+ }
+ },
+ "system": "drone system 7666",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03552781089418,
+ 38.0898861108813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7667",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7667 accessories"
+ }
+ },
+ "system": "drone system 7667",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39628924840756,
+ 38.37642223140846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7668",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7668 accessories"
+ }
+ },
+ "system": "drone system 7668",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78561970959892,
+ 38.82150713974314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7669",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7669 accessories"
+ }
+ },
+ "system": "drone system 7669",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80542574913878,
+ 39.471110136945995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7670",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7670 accessories"
+ }
+ },
+ "system": "drone system 7670",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30636111723251,
+ 38.800387034919666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7671",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7671 accessories"
+ }
+ },
+ "system": "drone system 7671",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99220553656754,
+ 38.290249853129126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7672",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7672 accessories"
+ }
+ },
+ "system": "drone system 7672",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.778331672481,
+ 38.935511966053745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7673",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7673 accessories"
+ }
+ },
+ "system": "drone system 7673",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84174584793139,
+ 38.75143599333559
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7674",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7674 accessories"
+ }
+ },
+ "system": "drone system 7674",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26559307670195,
+ 38.54456780073701
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7675",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7675 accessories"
+ }
+ },
+ "system": "drone system 7675",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18818717544269,
+ 39.44566769450413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7676",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7676 accessories"
+ }
+ },
+ "system": "drone system 7676",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.155908890254,
+ 38.95413520039182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7677",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7677 accessories"
+ }
+ },
+ "system": "drone system 7677",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61214804506128,
+ 39.4571300831387
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7678",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7678 accessories"
+ }
+ },
+ "system": "drone system 7678",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81194146709898,
+ 39.076593643201086
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7679",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7679 accessories"
+ }
+ },
+ "system": "drone system 7679",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4760643537955,
+ 39.66289382015329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7680",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7680 accessories"
+ }
+ },
+ "system": "drone system 7680",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83364966783633,
+ 38.37125906847069
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7681",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7681 accessories"
+ }
+ },
+ "system": "drone system 7681",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86446197169103,
+ 38.28175894455718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7682",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7682 accessories"
+ }
+ },
+ "system": "drone system 7682",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5826484153037,
+ 39.35285449195166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7683",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7683 accessories"
+ }
+ },
+ "system": "drone system 7683",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77909998016322,
+ 39.75710767192074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7684",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7684 accessories"
+ }
+ },
+ "system": "drone system 7684",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46251467573111,
+ 39.118541327789195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7685",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7685 accessories"
+ }
+ },
+ "system": "drone system 7685",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49363160604005,
+ 38.337478985020056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7686",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7686 accessories"
+ }
+ },
+ "system": "drone system 7686",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50671187163785,
+ 38.82443880131618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7687",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7687 accessories"
+ }
+ },
+ "system": "drone system 7687",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60540866710647,
+ 38.45269179565108
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7688",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7688 accessories"
+ }
+ },
+ "system": "drone system 7688",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88063752158764,
+ 39.247428363862134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7689",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7689 accessories"
+ }
+ },
+ "system": "drone system 7689",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1131138016179,
+ 38.23953965158212
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7690",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7690 accessories"
+ }
+ },
+ "system": "drone system 7690",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16605717191919,
+ 38.31551317272575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7691",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7691 accessories"
+ }
+ },
+ "system": "drone system 7691",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20409841434068,
+ 38.715111704133236
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7692",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7692 accessories"
+ }
+ },
+ "system": "drone system 7692",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76762915683264,
+ 39.759269761653954
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7693",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7693 accessories"
+ }
+ },
+ "system": "drone system 7693",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.829096495781,
+ 38.33333908045418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7694",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7694 accessories"
+ }
+ },
+ "system": "drone system 7694",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2262958685251,
+ 39.374213152483286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7695",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7695 accessories"
+ }
+ },
+ "system": "drone system 7695",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38104994538713,
+ 38.94946839799216
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7696",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7696 accessories"
+ }
+ },
+ "system": "drone system 7696",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77142971140616,
+ 39.31777610838189
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7697",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7697 accessories"
+ }
+ },
+ "system": "drone system 7697",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94402743946875,
+ 39.51875991401962
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7698",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7698 accessories"
+ }
+ },
+ "system": "drone system 7698",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48467972003141,
+ 39.20257170235442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7699",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7699 accessories"
+ }
+ },
+ "system": "drone system 7699",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96482638523243,
+ 38.23254808930422
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7700",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7700 accessories"
+ }
+ },
+ "system": "drone system 7700",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88052142586665,
+ 38.68893189746794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7701",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7701 accessories"
+ }
+ },
+ "system": "drone system 7701",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25619181042583,
+ 39.344868066069154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7702",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7702 accessories"
+ }
+ },
+ "system": "drone system 7702",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3759778796777,
+ 38.68650761730392
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7703",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7703 accessories"
+ }
+ },
+ "system": "drone system 7703",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05637467605926,
+ 39.197329080606956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7704",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7704 accessories"
+ }
+ },
+ "system": "drone system 7704",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25929335482394,
+ 39.17462824897891
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7705",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7705 accessories"
+ }
+ },
+ "system": "drone system 7705",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13038404553933,
+ 38.57344119347114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7706",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7706 accessories"
+ }
+ },
+ "system": "drone system 7706",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08325579000903,
+ 39.38811951241886
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7707",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7707 accessories"
+ }
+ },
+ "system": "drone system 7707",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35379217061514,
+ 39.025992822699465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7708",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7708 accessories"
+ }
+ },
+ "system": "drone system 7708",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66774908909262,
+ 39.27211198807718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7709",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7709 accessories"
+ }
+ },
+ "system": "drone system 7709",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8255607250607,
+ 39.61327924249721
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7710",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7710 accessories"
+ }
+ },
+ "system": "drone system 7710",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0545963317487,
+ 39.17814572617133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7711",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7711 accessories"
+ }
+ },
+ "system": "drone system 7711",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6021151660929,
+ 38.810940221664794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7712",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7712 accessories"
+ }
+ },
+ "system": "drone system 7712",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3682751423372,
+ 38.87196190654842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7713",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7713 accessories"
+ }
+ },
+ "system": "drone system 7713",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49162385952295,
+ 38.77436161190856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7714",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7714 accessories"
+ }
+ },
+ "system": "drone system 7714",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73495851941219,
+ 38.48046972116565
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7715",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7715 accessories"
+ }
+ },
+ "system": "drone system 7715",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54188878609615,
+ 39.00594090903297
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7716",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7716 accessories"
+ }
+ },
+ "system": "drone system 7716",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10511997910577,
+ 38.755958992115374
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7717",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7717 accessories"
+ }
+ },
+ "system": "drone system 7717",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1302125822261,
+ 39.29737486406524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7718",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7718 accessories"
+ }
+ },
+ "system": "drone system 7718",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41132576800238,
+ 38.66331331169738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7719",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7719 accessories"
+ }
+ },
+ "system": "drone system 7719",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76492671103095,
+ 38.56683517351181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7720",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7720 accessories"
+ }
+ },
+ "system": "drone system 7720",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45765655869569,
+ 38.630882313296155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7721",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7721 accessories"
+ }
+ },
+ "system": "drone system 7721",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3544419708454,
+ 38.72735737591884
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7722",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7722 accessories"
+ }
+ },
+ "system": "drone system 7722",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58476661368373,
+ 38.18276110508355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7723",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7723 accessories"
+ }
+ },
+ "system": "drone system 7723",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86113553867737,
+ 38.637782597922254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7724",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7724 accessories"
+ }
+ },
+ "system": "drone system 7724",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72528961855065,
+ 38.79711054401225
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7725",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7725 accessories"
+ }
+ },
+ "system": "drone system 7725",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65542943803752,
+ 38.37570403353846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7726",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7726 accessories"
+ }
+ },
+ "system": "drone system 7726",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15542176087311,
+ 38.960742241661585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7727",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7727 accessories"
+ }
+ },
+ "system": "drone system 7727",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51330417236012,
+ 39.230737018449936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7728",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7728 accessories"
+ }
+ },
+ "system": "drone system 7728",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54876340040789,
+ 38.72919840770077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7729",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7729 accessories"
+ }
+ },
+ "system": "drone system 7729",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63804476780908,
+ 38.7667071085589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7730",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7730 accessories"
+ }
+ },
+ "system": "drone system 7730",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37775294786817,
+ 38.745647861399355
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7731",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7731 accessories"
+ }
+ },
+ "system": "drone system 7731",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3880086222768,
+ 38.946784631531905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7732",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7732 accessories"
+ }
+ },
+ "system": "drone system 7732",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78691489809768,
+ 38.721151024599514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7733",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7733 accessories"
+ }
+ },
+ "system": "drone system 7733",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11672216744553,
+ 39.239385253732834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7734",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7734 accessories"
+ }
+ },
+ "system": "drone system 7734",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5427444097917,
+ 38.441481313298624
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7735",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7735 accessories"
+ }
+ },
+ "system": "drone system 7735",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64874674462294,
+ 39.24552661159185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7736",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7736 accessories"
+ }
+ },
+ "system": "drone system 7736",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34129681694633,
+ 38.87087272385077
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7737",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7737 accessories"
+ }
+ },
+ "system": "drone system 7737",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6519424367361,
+ 38.41543037197718
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7738",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7738 accessories"
+ }
+ },
+ "system": "drone system 7738",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03924280850536,
+ 38.015391518461975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7739",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7739 accessories"
+ }
+ },
+ "system": "drone system 7739",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69780809905848,
+ 38.94746235524769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7740",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7740 accessories"
+ }
+ },
+ "system": "drone system 7740",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2040537075887,
+ 39.18666947106366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7741",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7741 accessories"
+ }
+ },
+ "system": "drone system 7741",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78136544019195,
+ 38.11239784812934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7742",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7742 accessories"
+ }
+ },
+ "system": "drone system 7742",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56949793597232,
+ 39.52276602941412
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7743",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7743 accessories"
+ }
+ },
+ "system": "drone system 7743",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60141155022315,
+ 39.006813274907195
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7744",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7744 accessories"
+ }
+ },
+ "system": "drone system 7744",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.519164389761,
+ 38.44848338148196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7745",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7745 accessories"
+ }
+ },
+ "system": "drone system 7745",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97889490615847,
+ 39.632334677291034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7746",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7746 accessories"
+ }
+ },
+ "system": "drone system 7746",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35068859782191,
+ 38.51912067960282
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7747",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7747 accessories"
+ }
+ },
+ "system": "drone system 7747",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20050334598004,
+ 38.75746186018807
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7748",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7748 accessories"
+ }
+ },
+ "system": "drone system 7748",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2583285408457,
+ 38.65729369031932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7749",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7749 accessories"
+ }
+ },
+ "system": "drone system 7749",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31330079967083,
+ 38.85918134572782
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7750",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7750 accessories"
+ }
+ },
+ "system": "drone system 7750",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17939258473666,
+ 38.425760628030176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7751",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7751 accessories"
+ }
+ },
+ "system": "drone system 7751",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5644911641665,
+ 38.47581498574079
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7752",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7752 accessories"
+ }
+ },
+ "system": "drone system 7752",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2361499411671,
+ 38.74052821852021
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7753",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7753 accessories"
+ }
+ },
+ "system": "drone system 7753",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28591564496516,
+ 38.244755082822856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7754",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7754 accessories"
+ }
+ },
+ "system": "drone system 7754",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55411091751854,
+ 38.7320977365298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7755",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7755 accessories"
+ }
+ },
+ "system": "drone system 7755",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57593452064914,
+ 38.274937212247586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7756",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7756 accessories"
+ }
+ },
+ "system": "drone system 7756",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58848252564846,
+ 39.28361419475367
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7757",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7757 accessories"
+ }
+ },
+ "system": "drone system 7757",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4223438878785,
+ 38.95990504293424
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7758",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7758 accessories"
+ }
+ },
+ "system": "drone system 7758",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14037488990111,
+ 38.75176722894157
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7759",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7759 accessories"
+ }
+ },
+ "system": "drone system 7759",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60642633787829,
+ 39.481770347303204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7760",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7760 accessories"
+ }
+ },
+ "system": "drone system 7760",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07284703156196,
+ 39.61295811292812
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7761",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7761 accessories"
+ }
+ },
+ "system": "drone system 7761",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56887256418428,
+ 39.52530056090598
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7762",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7762 accessories"
+ }
+ },
+ "system": "drone system 7762",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82237505387383,
+ 39.08685443029141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7763",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7763 accessories"
+ }
+ },
+ "system": "drone system 7763",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82045728310506,
+ 38.2876166304606
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7764",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7764 accessories"
+ }
+ },
+ "system": "drone system 7764",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59496868286486,
+ 38.388310181848084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7765",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7765 accessories"
+ }
+ },
+ "system": "drone system 7765",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40988155383013,
+ 38.13247440374993
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7766",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7766 accessories"
+ }
+ },
+ "system": "drone system 7766",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68671643302113,
+ 39.131535523155456
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7767",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7767 accessories"
+ }
+ },
+ "system": "drone system 7767",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86490769894408,
+ 38.963210541910755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7768",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7768 accessories"
+ }
+ },
+ "system": "drone system 7768",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74731581958845,
+ 39.57679986623099
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7769",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7769 accessories"
+ }
+ },
+ "system": "drone system 7769",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98911276843695,
+ 38.90292791978384
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7770",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7770 accessories"
+ }
+ },
+ "system": "drone system 7770",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49687220660626,
+ 38.95589787134423
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7771",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7771 accessories"
+ }
+ },
+ "system": "drone system 7771",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8718101527964,
+ 38.6897412339755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7772",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7772 accessories"
+ }
+ },
+ "system": "drone system 7772",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99624828029762,
+ 39.4983640088992
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7773",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7773 accessories"
+ }
+ },
+ "system": "drone system 7773",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.59659352582037,
+ 38.59728104367907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7774",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7774 accessories"
+ }
+ },
+ "system": "drone system 7774",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94162649732917,
+ 39.12554053334373
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7775",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7775 accessories"
+ }
+ },
+ "system": "drone system 7775",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52497486622804,
+ 38.67049698461906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7776",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7776 accessories"
+ }
+ },
+ "system": "drone system 7776",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81310551098682,
+ 39.303192735225664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7777",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7777 accessories"
+ }
+ },
+ "system": "drone system 7777",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72391434241256,
+ 38.35777205548268
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7778",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7778 accessories"
+ }
+ },
+ "system": "drone system 7778",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99505226956566,
+ 38.59203220350072
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7779",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7779 accessories"
+ }
+ },
+ "system": "drone system 7779",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53375203942086,
+ 38.81419371489637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7780",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7780 accessories"
+ }
+ },
+ "system": "drone system 7780",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66804838721504,
+ 39.26595871426031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7781",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7781 accessories"
+ }
+ },
+ "system": "drone system 7781",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53533841454886,
+ 39.43772876581856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7782",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7782 accessories"
+ }
+ },
+ "system": "drone system 7782",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78484301907957,
+ 38.8156125385801
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7783",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7783 accessories"
+ }
+ },
+ "system": "drone system 7783",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85771640212641,
+ 38.97643923461387
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7784",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7784 accessories"
+ }
+ },
+ "system": "drone system 7784",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24261675437806,
+ 38.75563107465474
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7785",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7785 accessories"
+ }
+ },
+ "system": "drone system 7785",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.691812000037,
+ 39.294388033195794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7786",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7786 accessories"
+ }
+ },
+ "system": "drone system 7786",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31881821546023,
+ 38.09294496161986
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7787",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7787 accessories"
+ }
+ },
+ "system": "drone system 7787",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13708887044652,
+ 38.13490014323987
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7788",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7788 accessories"
+ }
+ },
+ "system": "drone system 7788",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19589711075031,
+ 38.93482403319286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7789",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7789 accessories"
+ }
+ },
+ "system": "drone system 7789",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08324533595041,
+ 39.08821290079938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7790",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7790 accessories"
+ }
+ },
+ "system": "drone system 7790",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42823927598386,
+ 38.33358890063697
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7791",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7791 accessories"
+ }
+ },
+ "system": "drone system 7791",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46858920522081,
+ 38.64486114167076
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7792",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7792 accessories"
+ }
+ },
+ "system": "drone system 7792",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64336047248536,
+ 39.00696915101656
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7793",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7793 accessories"
+ }
+ },
+ "system": "drone system 7793",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61489011559789,
+ 39.10804243399705
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7794",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7794 accessories"
+ }
+ },
+ "system": "drone system 7794",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3850047255233,
+ 39.490227805382155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7795",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7795 accessories"
+ }
+ },
+ "system": "drone system 7795",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40373150645284,
+ 38.82653308823893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7796",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7796 accessories"
+ }
+ },
+ "system": "drone system 7796",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03766446261577,
+ 38.01715563719823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7797",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7797 accessories"
+ }
+ },
+ "system": "drone system 7797",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87291809878802,
+ 38.72884107487602
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7798",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7798 accessories"
+ }
+ },
+ "system": "drone system 7798",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66978553962463,
+ 38.54443695742585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7799",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7799 accessories"
+ }
+ },
+ "system": "drone system 7799",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66389394625133,
+ 38.5538337117156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7800",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7800 accessories"
+ }
+ },
+ "system": "drone system 7800",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52655635890727,
+ 38.53558755176153
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7801",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7801 accessories"
+ }
+ },
+ "system": "drone system 7801",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80900472145382,
+ 39.08128692889095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7802",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7802 accessories"
+ }
+ },
+ "system": "drone system 7802",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27728777315548,
+ 38.72465728308206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7803",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7803 accessories"
+ }
+ },
+ "system": "drone system 7803",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5068340054014,
+ 38.19548052381571
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7804",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7804 accessories"
+ }
+ },
+ "system": "drone system 7804",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57523457821864,
+ 38.36420414191438
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7805",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7805 accessories"
+ }
+ },
+ "system": "drone system 7805",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64988851822866,
+ 39.45270674692586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7806",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7806 accessories"
+ }
+ },
+ "system": "drone system 7806",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13279882167176,
+ 39.30389061853754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7807",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7807 accessories"
+ }
+ },
+ "system": "drone system 7807",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0329492307338,
+ 38.37050185889573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7808",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7808 accessories"
+ }
+ },
+ "system": "drone system 7808",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46568152819395,
+ 39.29297322838443
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7809",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7809 accessories"
+ }
+ },
+ "system": "drone system 7809",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1607751572134,
+ 39.52632057060982
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7810",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7810 accessories"
+ }
+ },
+ "system": "drone system 7810",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78987984365148,
+ 38.48098802116931
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7811",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7811 accessories"
+ }
+ },
+ "system": "drone system 7811",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34758079180229,
+ 38.52538419144723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7812",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7812 accessories"
+ }
+ },
+ "system": "drone system 7812",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55176179629294,
+ 39.58682933495533
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7813",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7813 accessories"
+ }
+ },
+ "system": "drone system 7813",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15940064777661,
+ 39.48132592717573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7814",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7814 accessories"
+ }
+ },
+ "system": "drone system 7814",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26002498621759,
+ 38.53725201678975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7815",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7815 accessories"
+ }
+ },
+ "system": "drone system 7815",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50034441961182,
+ 39.40782009836157
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7816",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7816 accessories"
+ }
+ },
+ "system": "drone system 7816",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85620545380604,
+ 38.59911959489434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7817",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7817 accessories"
+ }
+ },
+ "system": "drone system 7817",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22004584666833,
+ 39.56465829461033
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7818",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7818 accessories"
+ }
+ },
+ "system": "drone system 7818",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.396226128236,
+ 39.37918762497133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7819",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7819 accessories"
+ }
+ },
+ "system": "drone system 7819",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46639145305069,
+ 39.37565662447664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7820",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7820 accessories"
+ }
+ },
+ "system": "drone system 7820",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42526237655304,
+ 39.406707453957516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7821",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7821 accessories"
+ }
+ },
+ "system": "drone system 7821",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36590043242448,
+ 39.47654458646557
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7822",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7822 accessories"
+ }
+ },
+ "system": "drone system 7822",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67757230854795,
+ 39.44608847396393
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7823",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7823 accessories"
+ }
+ },
+ "system": "drone system 7823",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55344531806692,
+ 38.938799463907486
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7824",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7824 accessories"
+ }
+ },
+ "system": "drone system 7824",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53100419270001,
+ 39.379313179919755
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7825",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7825 accessories"
+ }
+ },
+ "system": "drone system 7825",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62812293947978,
+ 39.66874701531278
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7826",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7826 accessories"
+ }
+ },
+ "system": "drone system 7826",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50028061663592,
+ 39.05843196963515
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7827",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7827 accessories"
+ }
+ },
+ "system": "drone system 7827",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83416025379285,
+ 39.234505494162576
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7828",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7828 accessories"
+ }
+ },
+ "system": "drone system 7828",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18271569274907,
+ 38.1640527392047
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7829",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7829 accessories"
+ }
+ },
+ "system": "drone system 7829",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41568889322524,
+ 39.361130877466174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7830",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7830 accessories"
+ }
+ },
+ "system": "drone system 7830",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12159384329398,
+ 38.03398111928322
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7831",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7831 accessories"
+ }
+ },
+ "system": "drone system 7831",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59065639144549,
+ 39.02861378733745
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7832",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7832 accessories"
+ }
+ },
+ "system": "drone system 7832",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70207065253496,
+ 39.124975709518736
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7833",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7833 accessories"
+ }
+ },
+ "system": "drone system 7833",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50748797899308,
+ 39.38857833169349
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7834",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7834 accessories"
+ }
+ },
+ "system": "drone system 7834",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.36099884575019,
+ 38.989766986216566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7835",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7835 accessories"
+ }
+ },
+ "system": "drone system 7835",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99028122151876,
+ 39.52099240573247
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7836",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7836 accessories"
+ }
+ },
+ "system": "drone system 7836",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98049292162499,
+ 38.092642117698304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7837",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7837 accessories"
+ }
+ },
+ "system": "drone system 7837",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51001206073849,
+ 38.489762758353095
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7838",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7838 accessories"
+ }
+ },
+ "system": "drone system 7838",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4116826289965,
+ 38.89706127398824
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7839",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7839 accessories"
+ }
+ },
+ "system": "drone system 7839",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22034025638565,
+ 38.2257752573294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7840",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7840 accessories"
+ }
+ },
+ "system": "drone system 7840",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2248985388361,
+ 38.67494933582074
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7841",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7841 accessories"
+ }
+ },
+ "system": "drone system 7841",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07225498693943,
+ 39.78600628685483
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7842",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7842 accessories"
+ }
+ },
+ "system": "drone system 7842",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60389057482962,
+ 38.351783641170144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7843",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7843 accessories"
+ }
+ },
+ "system": "drone system 7843",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51894161473436,
+ 38.35241325799758
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7844",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7844 accessories"
+ }
+ },
+ "system": "drone system 7844",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2611337460305,
+ 38.6753167522254
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7845",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7845 accessories"
+ }
+ },
+ "system": "drone system 7845",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68571901168183,
+ 39.21563016882657
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7846",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7846 accessories"
+ }
+ },
+ "system": "drone system 7846",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9029288790172,
+ 38.6685890395937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7847",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7847 accessories"
+ }
+ },
+ "system": "drone system 7847",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92391833522336,
+ 39.31323587705441
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7848",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7848 accessories"
+ }
+ },
+ "system": "drone system 7848",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25068827781129,
+ 38.935408009102275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7849",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7849 accessories"
+ }
+ },
+ "system": "drone system 7849",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40843167443833,
+ 38.610696809156096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7850",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7850 accessories"
+ }
+ },
+ "system": "drone system 7850",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.04284939480509,
+ 38.18623913690617
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7851",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7851 accessories"
+ }
+ },
+ "system": "drone system 7851",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50298121417558,
+ 38.546313441074716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7852",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7852 accessories"
+ }
+ },
+ "system": "drone system 7852",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67170311847097,
+ 39.703662991374756
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7853",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7853 accessories"
+ }
+ },
+ "system": "drone system 7853",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94243085056587,
+ 38.50167070718611
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7854",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7854 accessories"
+ }
+ },
+ "system": "drone system 7854",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70561710487746,
+ 38.94554365813104
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7855",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7855 accessories"
+ }
+ },
+ "system": "drone system 7855",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47085187990346,
+ 38.8252124331068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7856",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7856 accessories"
+ }
+ },
+ "system": "drone system 7856",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09379230572499,
+ 38.17506319934262
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7857",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7857 accessories"
+ }
+ },
+ "system": "drone system 7857",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38470487498986,
+ 38.68077202856129
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7858",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7858 accessories"
+ }
+ },
+ "system": "drone system 7858",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26784731492039,
+ 39.394683195782044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7859",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7859 accessories"
+ }
+ },
+ "system": "drone system 7859",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65694404341399,
+ 39.11178514568907
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7860",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7860 accessories"
+ }
+ },
+ "system": "drone system 7860",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42377852001773,
+ 38.73714946750199
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7861",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7861 accessories"
+ }
+ },
+ "system": "drone system 7861",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.49525934076173,
+ 39.536710881694134
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7862",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7862 accessories"
+ }
+ },
+ "system": "drone system 7862",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.156029700149,
+ 39.059081996119346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7863",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7863 accessories"
+ }
+ },
+ "system": "drone system 7863",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66543062299398,
+ 38.245255613979204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7864",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7864 accessories"
+ }
+ },
+ "system": "drone system 7864",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70150824301167,
+ 39.400834850294366
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7865",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7865 accessories"
+ }
+ },
+ "system": "drone system 7865",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51734112340279,
+ 39.20593229183329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7866",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7866 accessories"
+ }
+ },
+ "system": "drone system 7866",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30246923414835,
+ 39.23470465688093
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7867",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7867 accessories"
+ }
+ },
+ "system": "drone system 7867",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77729124703536,
+ 38.88981262472329
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7868",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7868 accessories"
+ }
+ },
+ "system": "drone system 7868",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30210267216516,
+ 38.48332206594045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7869",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7869 accessories"
+ }
+ },
+ "system": "drone system 7869",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97711295741334,
+ 38.57860004558584
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7870",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7870 accessories"
+ }
+ },
+ "system": "drone system 7870",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5712322756694,
+ 39.14431062316645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7871",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7871 accessories"
+ }
+ },
+ "system": "drone system 7871",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64900218304852,
+ 39.13109565006981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7872",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7872 accessories"
+ }
+ },
+ "system": "drone system 7872",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90631332040321,
+ 39.13156895527056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7873",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7873 accessories"
+ }
+ },
+ "system": "drone system 7873",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41760124067056,
+ 39.582577886803946
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7874",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7874 accessories"
+ }
+ },
+ "system": "drone system 7874",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63704900718287,
+ 38.361499123476975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7875",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7875 accessories"
+ }
+ },
+ "system": "drone system 7875",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76314838539882,
+ 38.22915616394173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7876",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7876 accessories"
+ }
+ },
+ "system": "drone system 7876",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54246203924762,
+ 39.55995374890752
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7877",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7877 accessories"
+ }
+ },
+ "system": "drone system 7877",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36405495959734,
+ 39.19251578278729
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7878",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7878 accessories"
+ }
+ },
+ "system": "drone system 7878",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06670911074433,
+ 39.60205417045031
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7879",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7879 accessories"
+ }
+ },
+ "system": "drone system 7879",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31635860674321,
+ 39.20713021464795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7880",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7880 accessories"
+ }
+ },
+ "system": "drone system 7880",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72730401584067,
+ 38.786714724529645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7881",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7881 accessories"
+ }
+ },
+ "system": "drone system 7881",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62094847219689,
+ 38.521965113660485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7882",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7882 accessories"
+ }
+ },
+ "system": "drone system 7882",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09325722511088,
+ 38.710573771463544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7883",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7883 accessories"
+ }
+ },
+ "system": "drone system 7883",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81618100092815,
+ 38.719403832962534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7884",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7884 accessories"
+ }
+ },
+ "system": "drone system 7884",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88199897997578,
+ 38.554890264024586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7885",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7885 accessories"
+ }
+ },
+ "system": "drone system 7885",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65737101172984,
+ 38.65244274343014
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7886",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7886 accessories"
+ }
+ },
+ "system": "drone system 7886",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76843530485958,
+ 39.73480796510271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7887",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7887 accessories"
+ }
+ },
+ "system": "drone system 7887",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6191862695448,
+ 39.38358127298916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7888",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7888 accessories"
+ }
+ },
+ "system": "drone system 7888",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.13385392766854,
+ 38.76745983171814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7889",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7889 accessories"
+ }
+ },
+ "system": "drone system 7889",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12664755637654,
+ 38.91911142263403
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7890",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7890 accessories"
+ }
+ },
+ "system": "drone system 7890",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25397907286933,
+ 39.163782504869296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7891",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7891 accessories"
+ }
+ },
+ "system": "drone system 7891",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01308407349653,
+ 38.88213019573603
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7892",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7892 accessories"
+ }
+ },
+ "system": "drone system 7892",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29755329163082,
+ 38.61432466935482
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7893",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7893 accessories"
+ }
+ },
+ "system": "drone system 7893",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44424753332113,
+ 39.60968531675715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7894",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7894 accessories"
+ }
+ },
+ "system": "drone system 7894",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72780476835963,
+ 39.46471221418967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7895",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7895 accessories"
+ }
+ },
+ "system": "drone system 7895",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93025094036943,
+ 38.079834910703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7896",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7896 accessories"
+ }
+ },
+ "system": "drone system 7896",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78141062483677,
+ 39.342998916432585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7897",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7897 accessories"
+ }
+ },
+ "system": "drone system 7897",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15301024001847,
+ 38.848957337873266
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7898",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7898 accessories"
+ }
+ },
+ "system": "drone system 7898",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28801539592095,
+ 38.091553095319256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7899",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7899 accessories"
+ }
+ },
+ "system": "drone system 7899",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40262522361391,
+ 39.00412848031671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7900",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7900 accessories"
+ }
+ },
+ "system": "drone system 7900",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48066514672071,
+ 38.3094419094493
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7901",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7901 accessories"
+ }
+ },
+ "system": "drone system 7901",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36690765853311,
+ 39.38734027553291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7902",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7902 accessories"
+ }
+ },
+ "system": "drone system 7902",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5817591579842,
+ 39.01786987644082
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7903",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7903 accessories"
+ }
+ },
+ "system": "drone system 7903",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56382329082281,
+ 38.52425732945248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7904",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7904 accessories"
+ }
+ },
+ "system": "drone system 7904",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28301724611502,
+ 38.79792864258477
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7905",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7905 accessories"
+ }
+ },
+ "system": "drone system 7905",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9401158769498,
+ 38.333325831368185
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7906",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7906 accessories"
+ }
+ },
+ "system": "drone system 7906",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65972221771266,
+ 38.698980200788206
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7907",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7907 accessories"
+ }
+ },
+ "system": "drone system 7907",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47630678235271,
+ 39.563160812889166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7908",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7908 accessories"
+ }
+ },
+ "system": "drone system 7908",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62394949677451,
+ 38.463138890107295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7909",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7909 accessories"
+ }
+ },
+ "system": "drone system 7909",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.88267592746796,
+ 39.103874577784815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7910",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7910 accessories"
+ }
+ },
+ "system": "drone system 7910",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49084597281534,
+ 39.31536798241063
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7911",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7911 accessories"
+ }
+ },
+ "system": "drone system 7911",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4631780547928,
+ 38.7674347926121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7912",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7912 accessories"
+ }
+ },
+ "system": "drone system 7912",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84779535220017,
+ 38.19555163378109
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7913",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7913 accessories"
+ }
+ },
+ "system": "drone system 7913",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02534808958147,
+ 38.409054180403416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7914",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7914 accessories"
+ }
+ },
+ "system": "drone system 7914",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67600998729013,
+ 38.46932908152844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7915",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7915 accessories"
+ }
+ },
+ "system": "drone system 7915",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41135653559573,
+ 38.83739409647983
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7916",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7916 accessories"
+ }
+ },
+ "system": "drone system 7916",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56150535095594,
+ 39.102012184657625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7917",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7917 accessories"
+ }
+ },
+ "system": "drone system 7917",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37744252730702,
+ 38.89345888122085
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7918",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7918 accessories"
+ }
+ },
+ "system": "drone system 7918",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55039077796907,
+ 38.930499359253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7919",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7919 accessories"
+ }
+ },
+ "system": "drone system 7919",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4439424188349,
+ 38.41189326529637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7920",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7920 accessories"
+ }
+ },
+ "system": "drone system 7920",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74751187019234,
+ 38.17598884534127
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7921",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7921 accessories"
+ }
+ },
+ "system": "drone system 7921",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35449594044651,
+ 38.49468052005005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7922",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7922 accessories"
+ }
+ },
+ "system": "drone system 7922",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83173096045485,
+ 39.218141584011214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7923",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7923 accessories"
+ }
+ },
+ "system": "drone system 7923",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53839159101233,
+ 38.307421681777996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7924",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7924 accessories"
+ }
+ },
+ "system": "drone system 7924",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15027639330584,
+ 39.326105553260966
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7925",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7925 accessories"
+ }
+ },
+ "system": "drone system 7925",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0853325025824,
+ 38.730653675559815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7926",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7926 accessories"
+ }
+ },
+ "system": "drone system 7926",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28866457143818,
+ 39.43809146216791
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7927",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7927 accessories"
+ }
+ },
+ "system": "drone system 7927",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21655322547794,
+ 38.798419621245245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7928",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7928 accessories"
+ }
+ },
+ "system": "drone system 7928",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47684246990288,
+ 38.68973869428788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7929",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7929 accessories"
+ }
+ },
+ "system": "drone system 7929",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6298212631822,
+ 38.451124182240555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7930",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7930 accessories"
+ }
+ },
+ "system": "drone system 7930",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.7758303046403,
+ 38.588156107154106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7931",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7931 accessories"
+ }
+ },
+ "system": "drone system 7931",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74585572814654,
+ 38.68814953971415
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7932",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7932 accessories"
+ }
+ },
+ "system": "drone system 7932",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93094980114677,
+ 38.75585239489496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7933",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7933 accessories"
+ }
+ },
+ "system": "drone system 7933",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3344339183925,
+ 38.77893953216121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7934",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7934 accessories"
+ }
+ },
+ "system": "drone system 7934",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02803561560802,
+ 38.9315730080666
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7935",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7935 accessories"
+ }
+ },
+ "system": "drone system 7935",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3446927043237,
+ 38.13441778686102
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7936",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7936 accessories"
+ }
+ },
+ "system": "drone system 7936",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89816734268759,
+ 38.5122027960842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7937",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7937 accessories"
+ }
+ },
+ "system": "drone system 7937",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.566429700714,
+ 38.24915814370138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7938",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7938 accessories"
+ }
+ },
+ "system": "drone system 7938",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65790362830766,
+ 39.62211450566173
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7939",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7939 accessories"
+ }
+ },
+ "system": "drone system 7939",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55955725916631,
+ 38.76665946768618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7940",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7940 accessories"
+ }
+ },
+ "system": "drone system 7940",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58498850301767,
+ 38.279886096850795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7941",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7941 accessories"
+ }
+ },
+ "system": "drone system 7941",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64973117150659,
+ 38.89432150170032
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7942",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7942 accessories"
+ }
+ },
+ "system": "drone system 7942",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03191947759352,
+ 38.66154894398102
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7943",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7943 accessories"
+ }
+ },
+ "system": "drone system 7943",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50585807452897,
+ 39.02875363928419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7944",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7944 accessories"
+ }
+ },
+ "system": "drone system 7944",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67346474621603,
+ 38.23582274788596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7945",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7945 accessories"
+ }
+ },
+ "system": "drone system 7945",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40124281246432,
+ 38.64655822252419
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7946",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7946 accessories"
+ }
+ },
+ "system": "drone system 7946",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41600962475307,
+ 38.4592820386346
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7947",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7947 accessories"
+ }
+ },
+ "system": "drone system 7947",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41372138343495,
+ 38.342928628523815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7948",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7948 accessories"
+ }
+ },
+ "system": "drone system 7948",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75357405451872,
+ 39.61219176821977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7949",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7949 accessories"
+ }
+ },
+ "system": "drone system 7949",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1660728117411,
+ 38.91786106055098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7950",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7950 accessories"
+ }
+ },
+ "system": "drone system 7950",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83940525024666,
+ 39.196422832259834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7951",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7951 accessories"
+ }
+ },
+ "system": "drone system 7951",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61580163396316,
+ 38.37772937366748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7952",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7952 accessories"
+ }
+ },
+ "system": "drone system 7952",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69135487150601,
+ 38.31839338390805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7953",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7953 accessories"
+ }
+ },
+ "system": "drone system 7953",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07138482155699,
+ 39.24470185989589
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7954",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7954 accessories"
+ }
+ },
+ "system": "drone system 7954",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41142215524206,
+ 38.8667215070861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7955",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7955 accessories"
+ }
+ },
+ "system": "drone system 7955",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.45187358558039,
+ 38.34483128984036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7956",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7956 accessories"
+ }
+ },
+ "system": "drone system 7956",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70198255849998,
+ 38.48705328413411
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7957",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7957 accessories"
+ }
+ },
+ "system": "drone system 7957",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47294705533311,
+ 38.82162713271652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7958",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7958 accessories"
+ }
+ },
+ "system": "drone system 7958",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10514979994954,
+ 39.45440905948578
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7959",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7959 accessories"
+ }
+ },
+ "system": "drone system 7959",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2207582630265,
+ 38.85394130297936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7960",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7960 accessories"
+ }
+ },
+ "system": "drone system 7960",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26838444934691,
+ 39.34544321610113
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7961",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7961 accessories"
+ }
+ },
+ "system": "drone system 7961",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51830134105242,
+ 38.2704360061369
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7962",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7962 accessories"
+ }
+ },
+ "system": "drone system 7962",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0314011954247,
+ 39.00975787334121
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7963",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7963 accessories"
+ }
+ },
+ "system": "drone system 7963",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.80824342781565,
+ 38.73512410257176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7964",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7964 accessories"
+ }
+ },
+ "system": "drone system 7964",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89109545413532,
+ 38.952062196133866
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7965",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7965 accessories"
+ }
+ },
+ "system": "drone system 7965",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73552749745089,
+ 39.347853294089106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7966",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7966 accessories"
+ }
+ },
+ "system": "drone system 7966",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60273902572986,
+ 38.36101099171282
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7967",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7967 accessories"
+ }
+ },
+ "system": "drone system 7967",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20215392830191,
+ 38.53798674887468
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7968",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7968 accessories"
+ }
+ },
+ "system": "drone system 7968",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3879311234714,
+ 38.358763829796295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7969",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7969 accessories"
+ }
+ },
+ "system": "drone system 7969",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19830667302446,
+ 39.36758917026658
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7970",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7970 accessories"
+ }
+ },
+ "system": "drone system 7970",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87526661650143,
+ 38.68732662326097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7971",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7971 accessories"
+ }
+ },
+ "system": "drone system 7971",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36536527127893,
+ 38.796862782402165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7972",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7972 accessories"
+ }
+ },
+ "system": "drone system 7972",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6858189384116,
+ 39.38389005603967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7973",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7973 accessories"
+ }
+ },
+ "system": "drone system 7973",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86831095628686,
+ 38.657638316635555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7974",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7974 accessories"
+ }
+ },
+ "system": "drone system 7974",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30019818121195,
+ 39.11389300035952
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7975",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7975 accessories"
+ }
+ },
+ "system": "drone system 7975",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30349466917434,
+ 38.16445067377788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7976",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7976 accessories"
+ }
+ },
+ "system": "drone system 7976",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59910329396085,
+ 39.681602980083554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7977",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7977 accessories"
+ }
+ },
+ "system": "drone system 7977",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78645365211868,
+ 38.92199833047289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7978",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7978 accessories"
+ }
+ },
+ "system": "drone system 7978",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26124938500509,
+ 39.68114223191413
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7979",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7979 accessories"
+ }
+ },
+ "system": "drone system 7979",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16533826312335,
+ 38.137703116749464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7980",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7980 accessories"
+ }
+ },
+ "system": "drone system 7980",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03215518304273,
+ 38.783327166587775
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7981",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7981 accessories"
+ }
+ },
+ "system": "drone system 7981",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15918345951864,
+ 39.17990078706356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7982",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7982 accessories"
+ }
+ },
+ "system": "drone system 7982",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8451787731148,
+ 39.18794034274336
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7983",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7983 accessories"
+ }
+ },
+ "system": "drone system 7983",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15368765597238,
+ 38.81106719413164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7984",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7984 accessories"
+ }
+ },
+ "system": "drone system 7984",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43501310010598,
+ 39.300367154316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7985",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7985 accessories"
+ }
+ },
+ "system": "drone system 7985",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85196549317718,
+ 38.520791306512805
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7986",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7986 accessories"
+ }
+ },
+ "system": "drone system 7986",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83233941707934,
+ 38.8651766057899
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7987",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7987 accessories"
+ }
+ },
+ "system": "drone system 7987",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32819135821742,
+ 38.613397991373084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7988",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7988 accessories"
+ }
+ },
+ "system": "drone system 7988",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.91958605370795,
+ 38.97682618908054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7989",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7989 accessories"
+ }
+ },
+ "system": "drone system 7989",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27642558284636,
+ 38.80958342813143
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7990",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7990 accessories"
+ }
+ },
+ "system": "drone system 7990",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1843276616076,
+ 38.928652767807804
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7991",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7991 accessories"
+ }
+ },
+ "system": "drone system 7991",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.25156432612786,
+ 38.95456076171442
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7992",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7992 accessories"
+ }
+ },
+ "system": "drone system 7992",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43774056302813,
+ 39.36556224437861
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7993",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7993 accessories"
+ }
+ },
+ "system": "drone system 7993",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37313337262324,
+ 38.87442201508698
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7994",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7994 accessories"
+ }
+ },
+ "system": "drone system 7994",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50881420315933,
+ 39.05757951091904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7995",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7995 accessories"
+ }
+ },
+ "system": "drone system 7995",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.45274942778886,
+ 38.590240297339754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7996",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7996 accessories"
+ }
+ },
+ "system": "drone system 7996",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.69393498768059,
+ 38.893206734783156
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7997",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7997 accessories"
+ }
+ },
+ "system": "drone system 7997",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8260128694553,
+ 39.235813811606235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7998",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7998 accessories"
+ }
+ },
+ "system": "drone system 7998",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67802503290459,
+ 39.46653782959335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone7999",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone7999 accessories"
+ }
+ },
+ "system": "drone system 7999",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32634678255296,
+ 39.41458023766506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8000",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8000 accessories"
+ }
+ },
+ "system": "drone system 8000",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85936153196243,
+ 39.70106082901849
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8001",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8001 accessories"
+ }
+ },
+ "system": "drone system 8001",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39708035596739,
+ 38.56538749828059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8002",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8002 accessories"
+ }
+ },
+ "system": "drone system 8002",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53831050225261,
+ 38.272399389906084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8003",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8003 accessories"
+ }
+ },
+ "system": "drone system 8003",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93039605809935,
+ 38.18928968433748
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8004",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8004 accessories"
+ }
+ },
+ "system": "drone system 8004",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81413277714506,
+ 39.48194848016948
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8005",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8005 accessories"
+ }
+ },
+ "system": "drone system 8005",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42068517268777,
+ 38.33552867855382
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8006",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8006 accessories"
+ }
+ },
+ "system": "drone system 8006",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29563564224868,
+ 38.407521598815784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8007",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8007 accessories"
+ }
+ },
+ "system": "drone system 8007",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63794163702434,
+ 38.56315314117408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8008",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8008 accessories"
+ }
+ },
+ "system": "drone system 8008",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47415797405166,
+ 38.948561339233166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8009",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8009 accessories"
+ }
+ },
+ "system": "drone system 8009",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80039262179443,
+ 39.490228038879444
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8010",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8010 accessories"
+ }
+ },
+ "system": "drone system 8010",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39805651844777,
+ 39.453641306477664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8011",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8011 accessories"
+ }
+ },
+ "system": "drone system 8011",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28160614384052,
+ 38.317067786904246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8012",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8012 accessories"
+ }
+ },
+ "system": "drone system 8012",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77740725483608,
+ 38.86763436394831
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8013",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8013 accessories"
+ }
+ },
+ "system": "drone system 8013",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99848026376445,
+ 38.939059705107226
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8014",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8014 accessories"
+ }
+ },
+ "system": "drone system 8014",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60987892459492,
+ 39.02490334856304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8015",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8015 accessories"
+ }
+ },
+ "system": "drone system 8015",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81098257364297,
+ 38.84832618591298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8016",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8016 accessories"
+ }
+ },
+ "system": "drone system 8016",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10120498731649,
+ 38.41700880423235
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8017",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8017 accessories"
+ }
+ },
+ "system": "drone system 8017",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34795461801512,
+ 38.22841159522149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8018",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8018 accessories"
+ }
+ },
+ "system": "drone system 8018",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72232335709846,
+ 38.630142554195785
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8019",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8019 accessories"
+ }
+ },
+ "system": "drone system 8019",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50747717250248,
+ 38.445312648422544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8020",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8020 accessories"
+ }
+ },
+ "system": "drone system 8020",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02532891524113,
+ 39.25787381666181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8021",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8021 accessories"
+ }
+ },
+ "system": "drone system 8021",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28412106952288,
+ 39.275923129919825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8022",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8022 accessories"
+ }
+ },
+ "system": "drone system 8022",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23555909642039,
+ 39.27548579914591
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8023",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8023 accessories"
+ }
+ },
+ "system": "drone system 8023",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96998556168306,
+ 39.65757492765354
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8024",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8024 accessories"
+ }
+ },
+ "system": "drone system 8024",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51377802146722,
+ 38.59538149074395
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8025",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8025 accessories"
+ }
+ },
+ "system": "drone system 8025",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.59808899785857,
+ 38.95118405747643
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8026",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8026 accessories"
+ }
+ },
+ "system": "drone system 8026",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73719134636391,
+ 39.50446303484684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8027",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8027 accessories"
+ }
+ },
+ "system": "drone system 8027",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85717919041485,
+ 39.614422984309215
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8028",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8028 accessories"
+ }
+ },
+ "system": "drone system 8028",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5802455635375,
+ 38.50609564643921
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8029",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8029 accessories"
+ }
+ },
+ "system": "drone system 8029",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58138453203432,
+ 38.74974942796141
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8030",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8030 accessories"
+ }
+ },
+ "system": "drone system 8030",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00522654092897,
+ 38.75696767330043
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8031",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8031 accessories"
+ }
+ },
+ "system": "drone system 8031",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99864393347393,
+ 39.00085267076015
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8032",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8032 accessories"
+ }
+ },
+ "system": "drone system 8032",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.24683581844552,
+ 38.66801010066944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8033",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8033 accessories"
+ }
+ },
+ "system": "drone system 8033",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29378526133735,
+ 39.20940671436677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8034",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8034 accessories"
+ }
+ },
+ "system": "drone system 8034",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14640977690995,
+ 38.99417713761872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8035",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8035 accessories"
+ }
+ },
+ "system": "drone system 8035",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.93012496392117,
+ 38.16214471571768
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8036",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8036 accessories"
+ }
+ },
+ "system": "drone system 8036",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94534264464771,
+ 39.25198574555859
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8037",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8037 accessories"
+ }
+ },
+ "system": "drone system 8037",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77958994424421,
+ 38.835859052471044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8038",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8038 accessories"
+ }
+ },
+ "system": "drone system 8038",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67045768513037,
+ 38.63051099415188
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8039",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8039 accessories"
+ }
+ },
+ "system": "drone system 8039",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73687073168676,
+ 38.44278498222682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8040",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8040 accessories"
+ }
+ },
+ "system": "drone system 8040",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77128217426053,
+ 38.393311995087934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8041",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8041 accessories"
+ }
+ },
+ "system": "drone system 8041",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53131879617614,
+ 38.941971729199
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8042",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8042 accessories"
+ }
+ },
+ "system": "drone system 8042",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12303998119748,
+ 38.74241334380234
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8043",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8043 accessories"
+ }
+ },
+ "system": "drone system 8043",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36055097433264,
+ 39.5081016645103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8044",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8044 accessories"
+ }
+ },
+ "system": "drone system 8044",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4684803827188,
+ 38.98571985713694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8045",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8045 accessories"
+ }
+ },
+ "system": "drone system 8045",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72151034994506,
+ 38.377983098561536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8046",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8046 accessories"
+ }
+ },
+ "system": "drone system 8046",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8970674785655,
+ 38.20192237895467
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8047",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8047 accessories"
+ }
+ },
+ "system": "drone system 8047",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18846589199617,
+ 38.679283713225665
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8048",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8048 accessories"
+ }
+ },
+ "system": "drone system 8048",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26385982223428,
+ 39.45504379474135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8049",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8049 accessories"
+ }
+ },
+ "system": "drone system 8049",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18896794521119,
+ 38.679824535863155
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8050",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8050 accessories"
+ }
+ },
+ "system": "drone system 8050",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51746450995985,
+ 38.47912985377175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8051",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8051 accessories"
+ }
+ },
+ "system": "drone system 8051",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01189542456602,
+ 38.71307551343814
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8052",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8052 accessories"
+ }
+ },
+ "system": "drone system 8052",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37346673915049,
+ 39.012774318586295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8053",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8053 accessories"
+ }
+ },
+ "system": "drone system 8053",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71251516732525,
+ 38.72231497747528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8054",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8054 accessories"
+ }
+ },
+ "system": "drone system 8054",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68836090232381,
+ 38.97977509566067
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8055",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8055 accessories"
+ }
+ },
+ "system": "drone system 8055",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74415799658576,
+ 39.21823693583514
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8056",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8056 accessories"
+ }
+ },
+ "system": "drone system 8056",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.61483830118989,
+ 38.51109589912214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8057",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8057 accessories"
+ }
+ },
+ "system": "drone system 8057",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.57305424350086,
+ 39.062214867949564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8058",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8058 accessories"
+ }
+ },
+ "system": "drone system 8058",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17951089700676,
+ 38.81081112740081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8059",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8059 accessories"
+ }
+ },
+ "system": "drone system 8059",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89435621476302,
+ 38.989887345639964
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8060",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8060 accessories"
+ }
+ },
+ "system": "drone system 8060",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20888459974094,
+ 38.70996538604906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8061",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8061 accessories"
+ }
+ },
+ "system": "drone system 8061",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72913536686018,
+ 39.27262039580609
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8062",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8062 accessories"
+ }
+ },
+ "system": "drone system 8062",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66603030727103,
+ 39.20950404633967
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8063",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8063 accessories"
+ }
+ },
+ "system": "drone system 8063",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08861144164004,
+ 39.26565956739473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8064",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8064 accessories"
+ }
+ },
+ "system": "drone system 8064",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42584133130372,
+ 39.435574933243885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8065",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8065 accessories"
+ }
+ },
+ "system": "drone system 8065",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19393698318699,
+ 39.52528704621181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8066",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8066 accessories"
+ }
+ },
+ "system": "drone system 8066",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88626381622194,
+ 38.34810191045133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8067",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8067 accessories"
+ }
+ },
+ "system": "drone system 8067",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68140597621398,
+ 38.74581232858073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8068",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8068 accessories"
+ }
+ },
+ "system": "drone system 8068",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79312751989434,
+ 39.620409033166396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8069",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8069 accessories"
+ }
+ },
+ "system": "drone system 8069",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26692296241067,
+ 38.826052250505704
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8070",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8070 accessories"
+ }
+ },
+ "system": "drone system 8070",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68133366163966,
+ 39.48014961799625
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8071",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8071 accessories"
+ }
+ },
+ "system": "drone system 8071",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94020579192258,
+ 38.52641982358844
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8072",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8072 accessories"
+ }
+ },
+ "system": "drone system 8072",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58065337034724,
+ 38.28634370290523
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8073",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8073 accessories"
+ }
+ },
+ "system": "drone system 8073",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17841106439495,
+ 38.572621678159464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8074",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8074 accessories"
+ }
+ },
+ "system": "drone system 8074",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77914286061791,
+ 38.2986477095291
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8075",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8075 accessories"
+ }
+ },
+ "system": "drone system 8075",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48225197433042,
+ 39.15730483955692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8076",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8076 accessories"
+ }
+ },
+ "system": "drone system 8076",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87752100294611,
+ 38.48328848376788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8077",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8077 accessories"
+ }
+ },
+ "system": "drone system 8077",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90596893529423,
+ 38.82487895380396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8078",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8078 accessories"
+ }
+ },
+ "system": "drone system 8078",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07008218577442,
+ 39.55624518307146
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8079",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8079 accessories"
+ }
+ },
+ "system": "drone system 8079",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15371694774106,
+ 38.756088712036714
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8080",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8080 accessories"
+ }
+ },
+ "system": "drone system 8080",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.96325513888782,
+ 38.710680902292054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8081",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8081 accessories"
+ }
+ },
+ "system": "drone system 8081",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00051329609664,
+ 38.33609790997969
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8082",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8082 accessories"
+ }
+ },
+ "system": "drone system 8082",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72511541182469,
+ 38.96460816778061
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8083",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8083 accessories"
+ }
+ },
+ "system": "drone system 8083",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60821912879915,
+ 39.593876647329466
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8084",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8084 accessories"
+ }
+ },
+ "system": "drone system 8084",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82178109673319,
+ 39.4802755353066
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8085",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8085 accessories"
+ }
+ },
+ "system": "drone system 8085",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71650781947146,
+ 39.46717167681418
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8086",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8086 accessories"
+ }
+ },
+ "system": "drone system 8086",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33639003563054,
+ 39.09098366886098
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8087",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8087 accessories"
+ }
+ },
+ "system": "drone system 8087",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.10217258584687,
+ 38.5826186913977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8088",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8088 accessories"
+ }
+ },
+ "system": "drone system 8088",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82227444449025,
+ 39.05323176647524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8089",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8089 accessories"
+ }
+ },
+ "system": "drone system 8089",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32930496086003,
+ 38.85067561740525
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8090",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8090 accessories"
+ }
+ },
+ "system": "drone system 8090",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19012719401175,
+ 38.96929657763008
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8091",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8091 accessories"
+ }
+ },
+ "system": "drone system 8091",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76642270660373,
+ 38.828503113532165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8092",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8092 accessories"
+ }
+ },
+ "system": "drone system 8092",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84500250761789,
+ 39.443984253931106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8093",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8093 accessories"
+ }
+ },
+ "system": "drone system 8093",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34447661320932,
+ 39.315647290392164
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8094",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8094 accessories"
+ }
+ },
+ "system": "drone system 8094",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6338384039467,
+ 39.03768051239538
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8095",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8095 accessories"
+ }
+ },
+ "system": "drone system 8095",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79979359037276,
+ 39.50399302211513
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8096",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8096 accessories"
+ }
+ },
+ "system": "drone system 8096",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73800347129097,
+ 38.81499229348168
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8097",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8097 accessories"
+ }
+ },
+ "system": "drone system 8097",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19775434476576,
+ 38.80696482623671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8098",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8098 accessories"
+ }
+ },
+ "system": "drone system 8098",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.47624111392015,
+ 38.31251564561103
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8099",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8099 accessories"
+ }
+ },
+ "system": "drone system 8099",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38601907036134,
+ 39.47407768672471
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8100",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8100 accessories"
+ }
+ },
+ "system": "drone system 8100",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.36228943528099,
+ 38.874007890960264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8101",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8101 accessories"
+ }
+ },
+ "system": "drone system 8101",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4219002513185,
+ 39.46564342514786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8102",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8102 accessories"
+ }
+ },
+ "system": "drone system 8102",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.76345354021802,
+ 39.32576759965774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8103",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8103 accessories"
+ }
+ },
+ "system": "drone system 8103",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38103290211548,
+ 39.13884607813853
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8104",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8104 accessories"
+ }
+ },
+ "system": "drone system 8104",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68164222853937,
+ 38.82186763759774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8105",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8105 accessories"
+ }
+ },
+ "system": "drone system 8105",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6346411607234,
+ 38.62784121910938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8106",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8106 accessories"
+ }
+ },
+ "system": "drone system 8106",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89098583918855,
+ 39.06499741330017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8107",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8107 accessories"
+ }
+ },
+ "system": "drone system 8107",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83046594090435,
+ 38.59794023549345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8108",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8108 accessories"
+ }
+ },
+ "system": "drone system 8108",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06585012586866,
+ 39.40369391753025
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8109",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8109 accessories"
+ }
+ },
+ "system": "drone system 8109",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35522531218562,
+ 39.02605530978527
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8110",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8110 accessories"
+ }
+ },
+ "system": "drone system 8110",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98870174250764,
+ 38.523181030573454
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8111",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8111 accessories"
+ }
+ },
+ "system": "drone system 8111",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8886503085796,
+ 39.4555183889694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8112",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8112 accessories"
+ }
+ },
+ "system": "drone system 8112",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34757232514632,
+ 38.505536020797834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8113",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8113 accessories"
+ }
+ },
+ "system": "drone system 8113",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75360390740549,
+ 38.39966451027628
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8114",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8114 accessories"
+ }
+ },
+ "system": "drone system 8114",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.70263850082893,
+ 39.229373359853916
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8115",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8115 accessories"
+ }
+ },
+ "system": "drone system 8115",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87292169505791,
+ 39.254897342585345
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8116",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8116 accessories"
+ }
+ },
+ "system": "drone system 8116",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.82687705049692,
+ 38.876759418581955
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8117",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8117 accessories"
+ }
+ },
+ "system": "drone system 8117",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34890349456707,
+ 38.470531665465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8118",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8118 accessories"
+ }
+ },
+ "system": "drone system 8118",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01123746078315,
+ 39.1793812992724
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8119",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8119 accessories"
+ }
+ },
+ "system": "drone system 8119",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55052248988403,
+ 39.54559004021521
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8120",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8120 accessories"
+ }
+ },
+ "system": "drone system 8120",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5976888221458,
+ 38.74167142099144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8121",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8121 accessories"
+ }
+ },
+ "system": "drone system 8121",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25558769047085,
+ 39.493303781158126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8122",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8122 accessories"
+ }
+ },
+ "system": "drone system 8122",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85951155583028,
+ 38.90313089676795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8123",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8123 accessories"
+ }
+ },
+ "system": "drone system 8123",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5016468236335,
+ 38.22971418965554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8124",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8124 accessories"
+ }
+ },
+ "system": "drone system 8124",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37492497549296,
+ 38.734491882672614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8125",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8125 accessories"
+ }
+ },
+ "system": "drone system 8125",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43802936892332,
+ 38.59978300434407
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8126",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8126 accessories"
+ }
+ },
+ "system": "drone system 8126",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48669589478247,
+ 38.23871717380051
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8127",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8127 accessories"
+ }
+ },
+ "system": "drone system 8127",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74917011403988,
+ 39.357097848153956
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8128",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8128 accessories"
+ }
+ },
+ "system": "drone system 8128",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08847087360239,
+ 39.39956085695475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8129",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8129 accessories"
+ }
+ },
+ "system": "drone system 8129",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76605645573122,
+ 39.40045572139209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8130",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8130 accessories"
+ }
+ },
+ "system": "drone system 8130",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82052357234902,
+ 38.34355297666764
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8131",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8131 accessories"
+ }
+ },
+ "system": "drone system 8131",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61915090624058,
+ 39.54382372881662
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8132",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8132 accessories"
+ }
+ },
+ "system": "drone system 8132",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66025740096428,
+ 39.15447742403183
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8133",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8133 accessories"
+ }
+ },
+ "system": "drone system 8133",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4308318619645,
+ 38.59484142468906
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8134",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8134 accessories"
+ }
+ },
+ "system": "drone system 8134",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49864319376911,
+ 38.40682678129826
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8135",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8135 accessories"
+ }
+ },
+ "system": "drone system 8135",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.33096877097334,
+ 38.688159082862036
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8136",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8136 accessories"
+ }
+ },
+ "system": "drone system 8136",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1714838466035,
+ 38.551267434193385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8137",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8137 accessories"
+ }
+ },
+ "system": "drone system 8137",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30805721342834,
+ 38.54416982216017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8138",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8138 accessories"
+ }
+ },
+ "system": "drone system 8138",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6842048259285,
+ 38.384854910866046
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8139",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8139 accessories"
+ }
+ },
+ "system": "drone system 8139",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8084403051296,
+ 38.89770450293193
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8140",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8140 accessories"
+ }
+ },
+ "system": "drone system 8140",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23397542050238,
+ 38.51788807483512
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8141",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8141 accessories"
+ }
+ },
+ "system": "drone system 8141",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54575116553707,
+ 39.44710034075876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8142",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8142 accessories"
+ }
+ },
+ "system": "drone system 8142",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75170225943826,
+ 38.77701881621822
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8143",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8143 accessories"
+ }
+ },
+ "system": "drone system 8143",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64558334014932,
+ 38.61000816557617
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8144",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8144 accessories"
+ }
+ },
+ "system": "drone system 8144",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22077873489475,
+ 39.48195982398619
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8145",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8145 accessories"
+ }
+ },
+ "system": "drone system 8145",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05379543698247,
+ 38.262360553152504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8146",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8146 accessories"
+ }
+ },
+ "system": "drone system 8146",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.15491792948156,
+ 38.99367607589821
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8147",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8147 accessories"
+ }
+ },
+ "system": "drone system 8147",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63960055315351,
+ 38.84465435819927
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8148",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8148 accessories"
+ }
+ },
+ "system": "drone system 8148",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78726719587756,
+ 38.71305227898996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8149",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8149 accessories"
+ }
+ },
+ "system": "drone system 8149",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15010877285968,
+ 39.140253311624626
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8150",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8150 accessories"
+ }
+ },
+ "system": "drone system 8150",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.91799869725352,
+ 39.1195391829224
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8151",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8151 accessories"
+ }
+ },
+ "system": "drone system 8151",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5844037955225,
+ 39.086358015241636
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8152",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8152 accessories"
+ }
+ },
+ "system": "drone system 8152",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.89460188102798,
+ 38.68075919084461
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8153",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8153 accessories"
+ }
+ },
+ "system": "drone system 8153",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20210911036493,
+ 38.63184047880937
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8154",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8154 accessories"
+ }
+ },
+ "system": "drone system 8154",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78256941110976,
+ 39.11958180716372
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8155",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8155 accessories"
+ }
+ },
+ "system": "drone system 8155",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48411611128267,
+ 38.25662523876314
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8156",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8156 accessories"
+ }
+ },
+ "system": "drone system 8156",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58711817681872,
+ 38.39909979495535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8157",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8157 accessories"
+ }
+ },
+ "system": "drone system 8157",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83903466799464,
+ 38.627189770401436
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8158",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8158 accessories"
+ }
+ },
+ "system": "drone system 8158",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19089647901822,
+ 39.501166691936
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8159",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8159 accessories"
+ }
+ },
+ "system": "drone system 8159",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74474119556302,
+ 38.761057281403396
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8160",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8160 accessories"
+ }
+ },
+ "system": "drone system 8160",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84044853203775,
+ 39.015077398626566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8161",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8161 accessories"
+ }
+ },
+ "system": "drone system 8161",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5478720650178,
+ 39.54379180851933
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8162",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8162 accessories"
+ }
+ },
+ "system": "drone system 8162",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48170350308773,
+ 39.18926115319309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8163",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8163 accessories"
+ }
+ },
+ "system": "drone system 8163",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47376839421615,
+ 38.97471964046176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8164",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8164 accessories"
+ }
+ },
+ "system": "drone system 8164",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5882391713431,
+ 38.78782217716678
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8165",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8165 accessories"
+ }
+ },
+ "system": "drone system 8165",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.44732859339412,
+ 39.18751420391942
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8166",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8166 accessories"
+ }
+ },
+ "system": "drone system 8166",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.81447489630928,
+ 38.9404564747307
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8167",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8167 accessories"
+ }
+ },
+ "system": "drone system 8167",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34949316703661,
+ 38.44598673542572
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8168",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8168 accessories"
+ }
+ },
+ "system": "drone system 8168",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52479909677818,
+ 38.55378322436426
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8169",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8169 accessories"
+ }
+ },
+ "system": "drone system 8169",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84791708302699,
+ 39.11186024825699
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8170",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8170 accessories"
+ }
+ },
+ "system": "drone system 8170",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0879356487307,
+ 39.58876680164938
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8171",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8171 accessories"
+ }
+ },
+ "system": "drone system 8171",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65112005638069,
+ 38.193305186294594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8172",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8172 accessories"
+ }
+ },
+ "system": "drone system 8172",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37407665102073,
+ 39.29088996456248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8173",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8173 accessories"
+ }
+ },
+ "system": "drone system 8173",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58618695208067,
+ 38.960093945390135
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8174",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8174 accessories"
+ }
+ },
+ "system": "drone system 8174",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.74441310070831,
+ 38.99099367712837
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8175",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8175 accessories"
+ }
+ },
+ "system": "drone system 8175",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.31395902496823,
+ 39.30233367398541
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8176",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8176 accessories"
+ }
+ },
+ "system": "drone system 8176",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30804354920068,
+ 38.48975809330313
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8177",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8177 accessories"
+ }
+ },
+ "system": "drone system 8177",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52263291066461,
+ 38.74787572988387
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8178",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8178 accessories"
+ }
+ },
+ "system": "drone system 8178",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.26118354891065,
+ 38.99501963518317
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8179",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8179 accessories"
+ }
+ },
+ "system": "drone system 8179",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.39314827470504,
+ 38.538743879044326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8180",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8180 accessories"
+ }
+ },
+ "system": "drone system 8180",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68239837146272,
+ 38.76510699259703
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8181",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8181 accessories"
+ }
+ },
+ "system": "drone system 8181",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06100911023816,
+ 39.61309751397618
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8182",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8182 accessories"
+ }
+ },
+ "system": "drone system 8182",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2227671403201,
+ 38.79191224476813
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8183",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8183 accessories"
+ }
+ },
+ "system": "drone system 8183",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.48107540438893,
+ 38.166626803553115
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8184",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8184 accessories"
+ }
+ },
+ "system": "drone system 8184",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30557874700467,
+ 38.48496132895039
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8185",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8185 accessories"
+ }
+ },
+ "system": "drone system 8185",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35847005199447,
+ 38.71671841662754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8186",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8186 accessories"
+ }
+ },
+ "system": "drone system 8186",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71668772580949,
+ 39.01503599086905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8187",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8187 accessories"
+ }
+ },
+ "system": "drone system 8187",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17435052750918,
+ 39.08570938165389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8188",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8188 accessories"
+ }
+ },
+ "system": "drone system 8188",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41388721294656,
+ 38.846634857817364
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8189",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8189 accessories"
+ }
+ },
+ "system": "drone system 8189",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49165708453931,
+ 39.26259739981655
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8190",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8190 accessories"
+ }
+ },
+ "system": "drone system 8190",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73152718566463,
+ 38.09963689852692
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8191",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8191 accessories"
+ }
+ },
+ "system": "drone system 8191",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83179472338803,
+ 39.022123722509455
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8192",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8192 accessories"
+ }
+ },
+ "system": "drone system 8192",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8469591136451,
+ 38.88867898690161
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8193",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8193 accessories"
+ }
+ },
+ "system": "drone system 8193",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.501680980147,
+ 39.318285443572414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8194",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8194 accessories"
+ }
+ },
+ "system": "drone system 8194",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53203260415992,
+ 39.123422631628806
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8195",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8195 accessories"
+ }
+ },
+ "system": "drone system 8195",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99919071687525,
+ 39.28908703745488
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8196",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8196 accessories"
+ }
+ },
+ "system": "drone system 8196",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87103038815908,
+ 38.5321713773769
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8197",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8197 accessories"
+ }
+ },
+ "system": "drone system 8197",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19765412762759,
+ 38.75207739976509
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8198",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8198 accessories"
+ }
+ },
+ "system": "drone system 8198",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74050137715918,
+ 39.08951624289713
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8199",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8199 accessories"
+ }
+ },
+ "system": "drone system 8199",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56235751119152,
+ 39.00063127325114
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8200",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8200 accessories"
+ }
+ },
+ "system": "drone system 8200",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79754283558096,
+ 38.274580797818054
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8201",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8201 accessories"
+ }
+ },
+ "system": "drone system 8201",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.57853526058389,
+ 38.889565947217044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8202",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8202 accessories"
+ }
+ },
+ "system": "drone system 8202",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.89810756374534,
+ 38.313856257980255
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8203",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8203 accessories"
+ }
+ },
+ "system": "drone system 8203",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03768033292953,
+ 38.13680434421599
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8204",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8204 accessories"
+ }
+ },
+ "system": "drone system 8204",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80858369800642,
+ 38.830723371578166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8205",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8205 accessories"
+ }
+ },
+ "system": "drone system 8205",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61129975360825,
+ 39.089818881385106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8206",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8206 accessories"
+ }
+ },
+ "system": "drone system 8206",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02065189735318,
+ 39.058576346164976
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8207",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8207 accessories"
+ }
+ },
+ "system": "drone system 8207",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.9333905164746,
+ 38.635231227702405
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8208",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8208 accessories"
+ }
+ },
+ "system": "drone system 8208",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97927842890932,
+ 38.944535786936484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8209",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8209 accessories"
+ }
+ },
+ "system": "drone system 8209",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43779550258132,
+ 39.11415219600142
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8210",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8210 accessories"
+ }
+ },
+ "system": "drone system 8210",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15571765267819,
+ 39.61136713539977
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8211",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8211 accessories"
+ }
+ },
+ "system": "drone system 8211",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67467822557968,
+ 38.56744695747566
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8212",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8212 accessories"
+ }
+ },
+ "system": "drone system 8212",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2164057381714,
+ 39.081162524316774
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8213",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8213 accessories"
+ }
+ },
+ "system": "drone system 8213",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.46469775395829,
+ 38.89249126279762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8214",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8214 accessories"
+ }
+ },
+ "system": "drone system 8214",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.40950854706199,
+ 38.91537501240649
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8215",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8215 accessories"
+ }
+ },
+ "system": "drone system 8215",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75845304991657,
+ 38.83478403937579
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8216",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8216 accessories"
+ }
+ },
+ "system": "drone system 8216",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08852462951764,
+ 38.32062620637298
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8217",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8217 accessories"
+ }
+ },
+ "system": "drone system 8217",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50180234816075,
+ 38.2299000056433
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8218",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8218 accessories"
+ }
+ },
+ "system": "drone system 8218",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05622244128287,
+ 39.77892245277637
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8219",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8219 accessories"
+ }
+ },
+ "system": "drone system 8219",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60684209967326,
+ 38.47200562744684
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8220",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8220 accessories"
+ }
+ },
+ "system": "drone system 8220",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2836880880072,
+ 39.338461325197564
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8221",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8221 accessories"
+ }
+ },
+ "system": "drone system 8221",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46841543678516,
+ 38.5159037243148
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8222",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8222 accessories"
+ }
+ },
+ "system": "drone system 8222",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33571686181908,
+ 38.584496100695716
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8223",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8223 accessories"
+ }
+ },
+ "system": "drone system 8223",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.07923250897768,
+ 39.418721083985204
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8224",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8224 accessories"
+ }
+ },
+ "system": "drone system 8224",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.84731211020642,
+ 38.995488569202685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8225",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8225 accessories"
+ }
+ },
+ "system": "drone system 8225",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8563694182299,
+ 39.46478864841073
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8226",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8226 accessories"
+ }
+ },
+ "system": "drone system 8226",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14882687406917,
+ 39.70435258253848
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8227",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8227 accessories"
+ }
+ },
+ "system": "drone system 8227",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.12417785566342,
+ 38.208750833437776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8228",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8228 accessories"
+ }
+ },
+ "system": "drone system 8228",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58663830410363,
+ 39.207386922264575
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8229",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8229 accessories"
+ }
+ },
+ "system": "drone system 8229",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.37784010727675,
+ 39.07768685042934
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8230",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8230 accessories"
+ }
+ },
+ "system": "drone system 8230",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77949983833231,
+ 39.5724201900464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8231",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8231 accessories"
+ }
+ },
+ "system": "drone system 8231",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66042161027211,
+ 38.248574387941325
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8232",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8232 accessories"
+ }
+ },
+ "system": "drone system 8232",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0519862880063,
+ 38.26251487452004
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8233",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8233 accessories"
+ }
+ },
+ "system": "drone system 8233",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.30323870189412,
+ 38.97935055705738
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8234",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8234 accessories"
+ }
+ },
+ "system": "drone system 8234",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8266316264315,
+ 38.843991601663404
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8235",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8235 accessories"
+ }
+ },
+ "system": "drone system 8235",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6053598644787,
+ 38.42376394047328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8236",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8236 accessories"
+ }
+ },
+ "system": "drone system 8236",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.67214000856364,
+ 39.65409788309767
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8237",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8237 accessories"
+ }
+ },
+ "system": "drone system 8237",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.92803357379924,
+ 38.795786013663594
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8238",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8238 accessories"
+ }
+ },
+ "system": "drone system 8238",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70693673469762,
+ 39.495046951747554
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8239",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8239 accessories"
+ }
+ },
+ "system": "drone system 8239",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.43722270297843,
+ 39.43989783041368
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8240",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8240 accessories"
+ }
+ },
+ "system": "drone system 8240",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94992235191583,
+ 39.00930320108722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8241",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8241 accessories"
+ }
+ },
+ "system": "drone system 8241",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37473295817809,
+ 38.886146862273904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8242",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8242 accessories"
+ }
+ },
+ "system": "drone system 8242",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.69970303180102,
+ 38.48409619715601
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8243",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8243 accessories"
+ }
+ },
+ "system": "drone system 8243",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94583790163882,
+ 38.37762904252258
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8244",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8244 accessories"
+ }
+ },
+ "system": "drone system 8244",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63567183616088,
+ 38.377874873635335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8245",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8245 accessories"
+ }
+ },
+ "system": "drone system 8245",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60302393169411,
+ 38.24568710692289
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8246",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8246 accessories"
+ }
+ },
+ "system": "drone system 8246",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.90502266418945,
+ 39.61625308415648
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8247",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8247 accessories"
+ }
+ },
+ "system": "drone system 8247",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.62528566714762,
+ 38.52468490147275
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8248",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8248 accessories"
+ }
+ },
+ "system": "drone system 8248",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.46243017592273,
+ 38.68383543204695
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8249",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8249 accessories"
+ }
+ },
+ "system": "drone system 8249",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.66080977889332,
+ 38.96193554197652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8250",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8250 accessories"
+ }
+ },
+ "system": "drone system 8250",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68608395774395,
+ 39.29084267757763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8251",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8251 accessories"
+ }
+ },
+ "system": "drone system 8251",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51304437393865,
+ 39.33714423218779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8252",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8252 accessories"
+ }
+ },
+ "system": "drone system 8252",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50349537206219,
+ 38.351227295199024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8253",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8253 accessories"
+ }
+ },
+ "system": "drone system 8253",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09193089015787,
+ 38.44721256788197
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8254",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8254 accessories"
+ }
+ },
+ "system": "drone system 8254",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.258011380058,
+ 39.23413886103586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8255",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8255 accessories"
+ }
+ },
+ "system": "drone system 8255",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34277101232567,
+ 38.14939850067559
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8256",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8256 accessories"
+ }
+ },
+ "system": "drone system 8256",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8761646182553,
+ 38.05591671110528
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8257",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8257 accessories"
+ }
+ },
+ "system": "drone system 8257",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.17074656788296,
+ 38.70071395473309
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8258",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8258 accessories"
+ }
+ },
+ "system": "drone system 8258",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65774698042394,
+ 39.5604390458083
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8259",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8259 accessories"
+ }
+ },
+ "system": "drone system 8259",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55143462395262,
+ 38.24579394059817
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8260",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8260 accessories"
+ }
+ },
+ "system": "drone system 8260",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5533892268532,
+ 39.52001650023305
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8261",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8261 accessories"
+ }
+ },
+ "system": "drone system 8261",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34415960940824,
+ 39.22903397824071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8262",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8262 accessories"
+ }
+ },
+ "system": "drone system 8262",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66439151218901,
+ 38.83126467717286
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8263",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8263 accessories"
+ }
+ },
+ "system": "drone system 8263",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5219452093769,
+ 38.30469710867097
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8264",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8264 accessories"
+ }
+ },
+ "system": "drone system 8264",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75235786941832,
+ 38.51494039819761
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8265",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8265 accessories"
+ }
+ },
+ "system": "drone system 8265",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.54635704523997,
+ 38.29733538759071
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8266",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8266 accessories"
+ }
+ },
+ "system": "drone system 8266",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97201496801956,
+ 39.15614696541679
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8267",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8267 accessories"
+ }
+ },
+ "system": "drone system 8267",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3894443073607,
+ 39.68837489218446
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8268",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8268 accessories"
+ }
+ },
+ "system": "drone system 8268",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.73686725187635,
+ 38.07933496712633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8269",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8269 accessories"
+ }
+ },
+ "system": "drone system 8269",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72532057243936,
+ 39.032877480192944
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8270",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8270 accessories"
+ }
+ },
+ "system": "drone system 8270",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34483724455116,
+ 38.39410183643585
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8271",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8271 accessories"
+ }
+ },
+ "system": "drone system 8271",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54716501765574,
+ 39.46218076933299
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8272",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8272 accessories"
+ }
+ },
+ "system": "drone system 8272",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6714420258886,
+ 39.44928082611796
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8273",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8273 accessories"
+ }
+ },
+ "system": "drone system 8273",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7977535241785,
+ 39.71092427394149
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8274",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8274 accessories"
+ }
+ },
+ "system": "drone system 8274",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84853772793224,
+ 38.54590394683535
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8275",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8275 accessories"
+ }
+ },
+ "system": "drone system 8275",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56260772517086,
+ 38.50447674722673
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8276",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8276 accessories"
+ }
+ },
+ "system": "drone system 8276",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01108320682278,
+ 39.0730826362138
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8277",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8277 accessories"
+ }
+ },
+ "system": "drone system 8277",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63738622414293,
+ 39.695116541620614
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8278",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8278 accessories"
+ }
+ },
+ "system": "drone system 8278",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.30506994115612,
+ 38.68147852347276
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8279",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8279 accessories"
+ }
+ },
+ "system": "drone system 8279",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84643288066921,
+ 38.484098893167726
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8280",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8280 accessories"
+ }
+ },
+ "system": "drone system 8280",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34501755112154,
+ 38.48937155205908
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8281",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8281 accessories"
+ }
+ },
+ "system": "drone system 8281",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.62988040772318,
+ 38.333467127640496
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8282",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8282 accessories"
+ }
+ },
+ "system": "drone system 8282",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6564698170863,
+ 38.8987814668495
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8283",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8283 accessories"
+ }
+ },
+ "system": "drone system 8283",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72150434610623,
+ 39.29535755568543
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8284",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8284 accessories"
+ }
+ },
+ "system": "drone system 8284",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53472446099929,
+ 38.897781513044926
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8285",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8285 accessories"
+ }
+ },
+ "system": "drone system 8285",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66489156793001,
+ 39.24391262131472
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8286",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8286 accessories"
+ }
+ },
+ "system": "drone system 8286",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3657606202808,
+ 38.74289726333573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8287",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8287 accessories"
+ }
+ },
+ "system": "drone system 8287",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28914640586375,
+ 39.66581634311059
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8288",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8288 accessories"
+ }
+ },
+ "system": "drone system 8288",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.78027136228472,
+ 38.77250523002232
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8289",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8289 accessories"
+ }
+ },
+ "system": "drone system 8289",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1758617057282,
+ 39.036867560910274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8290",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8290 accessories"
+ }
+ },
+ "system": "drone system 8290",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2988623489874,
+ 39.26055755975766
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8291",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8291 accessories"
+ }
+ },
+ "system": "drone system 8291",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.71899010563688,
+ 39.1580423481133
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8292",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8292 accessories"
+ }
+ },
+ "system": "drone system 8292",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7653884374591,
+ 38.533056102782794
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8293",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8293 accessories"
+ }
+ },
+ "system": "drone system 8293",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.17674352920224,
+ 39.671627720071264
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8294",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8294 accessories"
+ }
+ },
+ "system": "drone system 8294",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.73130693368246,
+ 39.190880042163506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8295",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8295 accessories"
+ }
+ },
+ "system": "drone system 8295",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72586527778537,
+ 38.12548716835034
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8296",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8296 accessories"
+ }
+ },
+ "system": "drone system 8296",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51647275299256,
+ 39.24200110170166
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8297",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8297 accessories"
+ }
+ },
+ "system": "drone system 8297",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72773917176013,
+ 39.35856634889487
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8298",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8298 accessories"
+ }
+ },
+ "system": "drone system 8298",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34435497686368,
+ 38.8741576136682
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8299",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8299 accessories"
+ }
+ },
+ "system": "drone system 8299",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60832130121959,
+ 38.41962330858284
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8300",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8300 accessories"
+ }
+ },
+ "system": "drone system 8300",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.65487533335947,
+ 38.14209123063925
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8301",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8301 accessories"
+ }
+ },
+ "system": "drone system 8301",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47453862101634,
+ 38.952431159546464
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8302",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8302 accessories"
+ }
+ },
+ "system": "drone system 8302",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.76197650285067,
+ 38.9614243014506
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8303",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8303 accessories"
+ }
+ },
+ "system": "drone system 8303",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.64968376981075,
+ 39.07548653276326
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8304",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8304 accessories"
+ }
+ },
+ "system": "drone system 8304",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88541591404824,
+ 38.82681317274292
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8305",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8305 accessories"
+ }
+ },
+ "system": "drone system 8305",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03939957938366,
+ 39.28981439332377
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8306",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8306 accessories"
+ }
+ },
+ "system": "drone system 8306",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35578479921584,
+ 38.5560259405999
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8307",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8307 accessories"
+ }
+ },
+ "system": "drone system 8307",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.26250712708386,
+ 39.00937084664453
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8308",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8308 accessories"
+ }
+ },
+ "system": "drone system 8308",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.21490973706403,
+ 38.560105888176516
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8309",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8309 accessories"
+ }
+ },
+ "system": "drone system 8309",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63837560300536,
+ 38.87244675294792
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8310",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8310 accessories"
+ }
+ },
+ "system": "drone system 8310",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.6078971998734,
+ 38.489356584744996
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8311",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8311 accessories"
+ }
+ },
+ "system": "drone system 8311",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.94226591472423,
+ 38.5729657069068
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8312",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8312 accessories"
+ }
+ },
+ "system": "drone system 8312",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4345735912166,
+ 38.54300467104615
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8313",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8313 accessories"
+ }
+ },
+ "system": "drone system 8313",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48007221395105,
+ 38.618366288526154
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8314",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8314 accessories"
+ }
+ },
+ "system": "drone system 8314",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1086127549584,
+ 38.141417340340126
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8315",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8315 accessories"
+ }
+ },
+ "system": "drone system 8315",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49896306528325,
+ 39.18624355003182
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8316",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8316 accessories"
+ }
+ },
+ "system": "drone system 8316",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.41811508278693,
+ 38.714071230381045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8317",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8317 accessories"
+ }
+ },
+ "system": "drone system 8317",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.20153715604549,
+ 39.58982713919512
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8318",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8318 accessories"
+ }
+ },
+ "system": "drone system 8318",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64580126614965,
+ 39.369727150112375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8319",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8319 accessories"
+ }
+ },
+ "system": "drone system 8319",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.27402784013131,
+ 38.42097583064932
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8320",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8320 accessories"
+ }
+ },
+ "system": "drone system 8320",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61959157519041,
+ 39.29754098569304
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8321",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8321 accessories"
+ }
+ },
+ "system": "drone system 8321",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6251649067727,
+ 38.1627308143024
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8322",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8322 accessories"
+ }
+ },
+ "system": "drone system 8322",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5982649857401,
+ 39.04573703423668
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8323",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8323 accessories"
+ }
+ },
+ "system": "drone system 8323",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05391495654371,
+ 38.973725208879294
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8324",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8324 accessories"
+ }
+ },
+ "system": "drone system 8324",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55799141015426,
+ 38.85003591089896
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8325",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8325 accessories"
+ }
+ },
+ "system": "drone system 8325",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74796917669732,
+ 38.98444823835081
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8326",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8326 accessories"
+ }
+ },
+ "system": "drone system 8326",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42064338823099,
+ 38.39592064180872
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8327",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8327 accessories"
+ }
+ },
+ "system": "drone system 8327",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75870529536341,
+ 38.0826478481312
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8328",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8328 accessories"
+ }
+ },
+ "system": "drone system 8328",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.504012295345,
+ 38.194560772091634
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8329",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8329 accessories"
+ }
+ },
+ "system": "drone system 8329",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.83692281314481,
+ 39.667631069226125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8330",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8330 accessories"
+ }
+ },
+ "system": "drone system 8330",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.23901816893392,
+ 39.242598331213635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8331",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8331 accessories"
+ }
+ },
+ "system": "drone system 8331",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.48353421507129,
+ 38.81657934165762
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8332",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8332 accessories"
+ }
+ },
+ "system": "drone system 8332",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38196780355412,
+ 39.26192588077671
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8333",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8333 accessories"
+ }
+ },
+ "system": "drone system 8333",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.64954265476769,
+ 38.535210164752904
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8334",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8334 accessories"
+ }
+ },
+ "system": "drone system 8334",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90752126587923,
+ 38.85442333491221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8335",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8335 accessories"
+ }
+ },
+ "system": "drone system 8335",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.4348505961477,
+ 38.598139734931664
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8336",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8336 accessories"
+ }
+ },
+ "system": "drone system 8336",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09742945159337,
+ 39.74028080900398
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8337",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8337 accessories"
+ }
+ },
+ "system": "drone system 8337",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87198942057982,
+ 38.27172593447287
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8338",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8338 accessories"
+ }
+ },
+ "system": "drone system 8338",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85031544963667,
+ 39.018734788762245
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8339",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8339 accessories"
+ }
+ },
+ "system": "drone system 8339",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42610981449388,
+ 39.23526816419911
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8340",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8340 accessories"
+ }
+ },
+ "system": "drone system 8340",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87637377612364,
+ 39.05472657976263
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8341",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8341 accessories"
+ }
+ },
+ "system": "drone system 8341",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25705479780966,
+ 38.833098340054285
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8342",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8342 accessories"
+ }
+ },
+ "system": "drone system 8342",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.77958802491308,
+ 39.63477538745827
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8343",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8343 accessories"
+ }
+ },
+ "system": "drone system 8343",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06084016512384,
+ 39.17704470989832
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8344",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8344 accessories"
+ }
+ },
+ "system": "drone system 8344",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3923622879678,
+ 39.514596359011385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8345",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8345 accessories"
+ }
+ },
+ "system": "drone system 8345",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42800053864792,
+ 38.7215605110984
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8346",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8346 accessories"
+ }
+ },
+ "system": "drone system 8346",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.09454712273784,
+ 39.506551129245096
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8347",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8347 accessories"
+ }
+ },
+ "system": "drone system 8347",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58324182975454,
+ 39.001061460559356
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8348",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8348 accessories"
+ }
+ },
+ "system": "drone system 8348",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.7238517791883,
+ 38.72306037387603
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8349",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8349 accessories"
+ }
+ },
+ "system": "drone system 8349",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52709700201066,
+ 39.5956951051448
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8350",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8350 accessories"
+ }
+ },
+ "system": "drone system 8350",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88496203559487,
+ 39.51955926173754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8351",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8351 accessories"
+ }
+ },
+ "system": "drone system 8351",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.60546039715135,
+ 39.60743882146209
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8352",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8352 accessories"
+ }
+ },
+ "system": "drone system 8352",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3178130642913,
+ 39.44880217944001
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8353",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8353 accessories"
+ }
+ },
+ "system": "drone system 8353",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18549984390962,
+ 39.37025818358517
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8354",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8354 accessories"
+ }
+ },
+ "system": "drone system 8354",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.58639594074194,
+ 39.49256259641864
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8355",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8355 accessories"
+ }
+ },
+ "system": "drone system 8355",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34117521617084,
+ 39.460242568139414
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8356",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8356 accessories"
+ }
+ },
+ "system": "drone system 8356",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99097245553435,
+ 39.61635049182573
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8357",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8357 accessories"
+ }
+ },
+ "system": "drone system 8357",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.9019455872858,
+ 38.908396013267975
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8358",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8358 accessories"
+ }
+ },
+ "system": "drone system 8358",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86468545754778,
+ 38.9891617838998
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8359",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8359 accessories"
+ }
+ },
+ "system": "drone system 8359",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6135941424344,
+ 39.25573027279181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8360",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8360 accessories"
+ }
+ },
+ "system": "drone system 8360",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.51109085181174,
+ 38.20611189526181
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8361",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8361 accessories"
+ }
+ },
+ "system": "drone system 8361",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87462341913131,
+ 38.39362685524421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8362",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8362 accessories"
+ }
+ },
+ "system": "drone system 8362",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43244110104754,
+ 39.257953746117686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8363",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8363 accessories"
+ }
+ },
+ "system": "drone system 8363",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.53360534763638,
+ 38.83297380551282
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8364",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8364 accessories"
+ }
+ },
+ "system": "drone system 8364",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.67966940590794,
+ 39.26247784668928
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8365",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8365 accessories"
+ }
+ },
+ "system": "drone system 8365",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.87270048365731,
+ 38.648955146428435
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8366",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8366 accessories"
+ }
+ },
+ "system": "drone system 8366",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.28141911549088,
+ 39.27905538686961
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8367",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8367 accessories"
+ }
+ },
+ "system": "drone system 8367",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5368143688567,
+ 38.66029972223851
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8368",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8368 accessories"
+ }
+ },
+ "system": "drone system 8368",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.85772476429425,
+ 39.30781107027645
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8369",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8369 accessories"
+ }
+ },
+ "system": "drone system 8369",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.72629407590568,
+ 38.704510296897524
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8370",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8370 accessories"
+ }
+ },
+ "system": "drone system 8370",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81671822678918,
+ 38.468678639675176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8371",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8371 accessories"
+ }
+ },
+ "system": "drone system 8371",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3782356629522,
+ 38.09609914581902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8372",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8372 accessories"
+ }
+ },
+ "system": "drone system 8372",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61891460648394,
+ 38.84609837645175
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8373",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8373 accessories"
+ }
+ },
+ "system": "drone system 8373",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.55365177573537,
+ 38.57579171471677
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8374",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8374 accessories"
+ }
+ },
+ "system": "drone system 8374",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.19529245747383,
+ 38.92371349169652
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8375",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8375 accessories"
+ }
+ },
+ "system": "drone system 8375",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24158706375631,
+ 39.66311086870635
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8376",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8376 accessories"
+ }
+ },
+ "system": "drone system 8376",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.14529036587794,
+ 38.675240689398485
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8377",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8377 accessories"
+ }
+ },
+ "system": "drone system 8377",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.83642502457135,
+ 39.11199627087006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8378",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8378 accessories"
+ }
+ },
+ "system": "drone system 8378",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78742332232589,
+ 39.581996960996335
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8379",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8379 accessories"
+ }
+ },
+ "system": "drone system 8379",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99607705751662,
+ 38.18914107522165
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8380",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8380 accessories"
+ }
+ },
+ "system": "drone system 8380",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.92463211242915,
+ 38.07727378648893
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8381",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8381 accessories"
+ }
+ },
+ "system": "drone system 8381",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.42611662262672,
+ 38.75880789586842
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8382",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8382 accessories"
+ }
+ },
+ "system": "drone system 8382",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.95828068171127,
+ 38.346781778866536
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8383",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8383 accessories"
+ }
+ },
+ "system": "drone system 8383",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23458483032438,
+ 39.19350660782983
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8384",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8384 accessories"
+ }
+ },
+ "system": "drone system 8384",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8897299480192,
+ 39.73224803657856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8385",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8385 accessories"
+ }
+ },
+ "system": "drone system 8385",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55962434910603,
+ 38.71601321459476
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8386",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8386 accessories"
+ }
+ },
+ "system": "drone system 8386",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71989627224501,
+ 38.955235526324316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8387",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8387 accessories"
+ }
+ },
+ "system": "drone system 8387",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6940944225466,
+ 39.560005295288256
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8388",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8388 accessories"
+ }
+ },
+ "system": "drone system 8388",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54272700478532,
+ 38.91113739728949
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8389",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8389 accessories"
+ }
+ },
+ "system": "drone system 8389",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.19535877036353,
+ 38.18327687562763
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8390",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8390 accessories"
+ }
+ },
+ "system": "drone system 8390",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.68023624653843,
+ 39.21734668166895
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8391",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8391 accessories"
+ }
+ },
+ "system": "drone system 8391",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.1424133366333,
+ 38.85776840019917
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8392",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8392 accessories"
+ }
+ },
+ "system": "drone system 8392",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.35309120511845,
+ 38.766827105000196
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8393",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8393 accessories"
+ }
+ },
+ "system": "drone system 8393",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61680698335432,
+ 38.803398664741174
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8394",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8394 accessories"
+ }
+ },
+ "system": "drone system 8394",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80063938870444,
+ 39.77266415589045
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8395",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8395 accessories"
+ }
+ },
+ "system": "drone system 8395",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38928767798949,
+ 39.166889413025686
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8396",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8396 accessories"
+ }
+ },
+ "system": "drone system 8396",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.66769640081137,
+ 38.44634320407815
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8397",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8397 accessories"
+ }
+ },
+ "system": "drone system 8397",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1532147228731,
+ 38.24228338896544
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8398",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8398 accessories"
+ }
+ },
+ "system": "drone system 8398",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0050341269574,
+ 38.67490144391754
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8399",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8399 accessories"
+ }
+ },
+ "system": "drone system 8399",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70397489337911,
+ 39.58802452844408
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8400",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8400 accessories"
+ }
+ },
+ "system": "drone system 8400",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.87067591115701,
+ 38.1539040880846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8401",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8401 accessories"
+ }
+ },
+ "system": "drone system 8401",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0502456134318,
+ 38.61350167234473
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8402",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8402 accessories"
+ }
+ },
+ "system": "drone system 8402",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29929589691817,
+ 38.78095973543449
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8403",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8403 accessories"
+ }
+ },
+ "system": "drone system 8403",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.85474351440533,
+ 38.82976424893069
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8404",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8404 accessories"
+ }
+ },
+ "system": "drone system 8404",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61399835999889,
+ 39.16564848970613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8405",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8405 accessories"
+ }
+ },
+ "system": "drone system 8405",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.29889413163463,
+ 39.379694699704274
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8406",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8406 accessories"
+ }
+ },
+ "system": "drone system 8406",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60979169766637,
+ 38.714878453803586
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8407",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8407 accessories"
+ }
+ },
+ "system": "drone system 8407",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34743534824224,
+ 38.819760757162825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8408",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8408 accessories"
+ }
+ },
+ "system": "drone system 8408",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.63119209198454,
+ 38.57445492811786
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8409",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8409 accessories"
+ }
+ },
+ "system": "drone system 8409",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.1445872227869,
+ 39.298437832900596
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8410",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8410 accessories"
+ }
+ },
+ "system": "drone system 8410",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38108285354139,
+ 38.41614986423902
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8411",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8411 accessories"
+ }
+ },
+ "system": "drone system 8411",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51654533218648,
+ 38.25476305030144
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8412",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8412 accessories"
+ }
+ },
+ "system": "drone system 8412",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.82206734589488,
+ 39.38482109600779
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8413",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8413 accessories"
+ }
+ },
+ "system": "drone system 8413",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.05153246237421,
+ 39.69613969594194
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8414",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8414 accessories"
+ }
+ },
+ "system": "drone system 8414",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16738226605419,
+ 39.55155486539481
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8415",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8415 accessories"
+ }
+ },
+ "system": "drone system 8415",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.50707709060855,
+ 39.348518404227555
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8416",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8416 accessories"
+ }
+ },
+ "system": "drone system 8416",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.37406708216123,
+ 39.008032333376214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8417",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8417 accessories"
+ }
+ },
+ "system": "drone system 8417",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43967299325418,
+ 38.856552564223534
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8418",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8418 accessories"
+ }
+ },
+ "system": "drone system 8418",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21278265773915,
+ 39.08809945974843
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8419",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8419 accessories"
+ }
+ },
+ "system": "drone system 8419",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.54611851275193,
+ 38.52267774299549
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8420",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8420 accessories"
+ }
+ },
+ "system": "drone system 8420",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.22954296031008,
+ 38.7606997500328
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8421",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8421 accessories"
+ }
+ },
+ "system": "drone system 8421",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86395738829253,
+ 39.24823338993055
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8422",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8422 accessories"
+ }
+ },
+ "system": "drone system 8422",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.90282641964838,
+ 38.756085092348044
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8423",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8423 accessories"
+ }
+ },
+ "system": "drone system 8423",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.99072265999469,
+ 38.240314176795
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8424",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8424 accessories"
+ }
+ },
+ "system": "drone system 8424",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71179466564999,
+ 38.38253595083613
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8425",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8425 accessories"
+ }
+ },
+ "system": "drone system 8425",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11566024958599,
+ 39.55893795860788
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8426",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8426 accessories"
+ }
+ },
+ "system": "drone system 8426",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.08384861477391,
+ 39.27111881966075
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8427",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8427 accessories"
+ }
+ },
+ "system": "drone system 8427",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.98627735703933,
+ 39.374503944164935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8428",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8428 accessories"
+ }
+ },
+ "system": "drone system 8428",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.0328775455754,
+ 39.21315468830337
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8429",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8429 accessories"
+ }
+ },
+ "system": "drone system 8429",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65891799006809,
+ 38.57380561655125
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8430",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8430 accessories"
+ }
+ },
+ "system": "drone system 8430",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.3495682027096,
+ 39.16937059698017
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8431",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8431 accessories"
+ }
+ },
+ "system": "drone system 8431",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.34984943201846,
+ 39.250695267041685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8432",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8432 accessories"
+ }
+ },
+ "system": "drone system 8432",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77511232874998,
+ 38.91714081129981
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8433",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8433 accessories"
+ }
+ },
+ "system": "drone system 8433",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.56570399538859,
+ 38.19456185327542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8434",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8434 accessories"
+ }
+ },
+ "system": "drone system 8434",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.50512523099047,
+ 38.85599559867221
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8435",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8435 accessories"
+ }
+ },
+ "system": "drone system 8435",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.34124622341518,
+ 39.74557449944416
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8436",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8436 accessories"
+ }
+ },
+ "system": "drone system 8436",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.44514436648477,
+ 38.95930445393835
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8437",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8437 accessories"
+ }
+ },
+ "system": "drone system 8437",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.77168131363874,
+ 38.54631503089542
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8438",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8438 accessories"
+ }
+ },
+ "system": "drone system 8438",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21019356662647,
+ 38.056524541150715
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8439",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8439 accessories"
+ }
+ },
+ "system": "drone system 8439",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.11628938469534,
+ 38.2092297429823
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8440",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8440 accessories"
+ }
+ },
+ "system": "drone system 8440",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2220386306291,
+ 38.87236983560878
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8441",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8441 accessories"
+ }
+ },
+ "system": "drone system 8441",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23164210063399,
+ 39.44213050561176
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8442",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8442 accessories"
+ }
+ },
+ "system": "drone system 8442",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.63708537911894,
+ 39.071047246957214
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8443",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8443 accessories"
+ }
+ },
+ "system": "drone system 8443",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.25479332111728,
+ 39.074327747876
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8444",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8444 accessories"
+ }
+ },
+ "system": "drone system 8444",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.4533329929657,
+ 38.582055125886434
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8445",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8445 accessories"
+ }
+ },
+ "system": "drone system 8445",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5696879650241,
+ 38.27486805821965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8446",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8446 accessories"
+ }
+ },
+ "system": "drone system 8446",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6252686770481,
+ 38.57881532684223
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8447",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8447 accessories"
+ }
+ },
+ "system": "drone system 8447",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.68251461633923,
+ 39.125459014621846
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8448",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8448 accessories"
+ }
+ },
+ "system": "drone system 8448",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.52847436362715,
+ 38.421049556986375
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8449",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8449 accessories"
+ }
+ },
+ "system": "drone system 8449",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3987611976765,
+ 38.46605803871923
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8450",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8450 accessories"
+ }
+ },
+ "system": "drone system 8450",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.52337600433817,
+ 38.82880863748295
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8451",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8451 accessories"
+ }
+ },
+ "system": "drone system 8451",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.71644938027457,
+ 38.577139863451016
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8452",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8452 accessories"
+ }
+ },
+ "system": "drone system 8452",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.78609023422273,
+ 38.12919555946723
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8453",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8453 accessories"
+ }
+ },
+ "system": "drone system 8453",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.28986236506015,
+ 38.23175879729388
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8454",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8454 accessories"
+ }
+ },
+ "system": "drone system 8454",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35874129348774,
+ 39.275259943828296
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8455",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8455 accessories"
+ }
+ },
+ "system": "drone system 8455",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.29650892832538,
+ 38.77169169806137
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8456",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8456 accessories"
+ }
+ },
+ "system": "drone system 8456",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.40851989490878,
+ 38.5714575932675
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8457",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8457 accessories"
+ }
+ },
+ "system": "drone system 8457",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.84390980367412,
+ 38.88798804988465
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8458",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8458 accessories"
+ }
+ },
+ "system": "drone system 8458",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.88188642779637,
+ 38.93141522744475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8459",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8459 accessories"
+ }
+ },
+ "system": "drone system 8459",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.16050027234836,
+ 39.128660723052995
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8460",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8460 accessories"
+ }
+ },
+ "system": "drone system 8460",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.06449774820304,
+ 39.05251776842421
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8461",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8461 accessories"
+ }
+ },
+ "system": "drone system 8461",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.33061844517741,
+ 39.198993180228776
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8462",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8462 accessories"
+ }
+ },
+ "system": "drone system 8462",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.79063534424253,
+ 38.473318999055365
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8463",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8463 accessories"
+ }
+ },
+ "system": "drone system 8463",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.75188738780338,
+ 39.269395049097604
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8464",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8464 accessories"
+ }
+ },
+ "system": "drone system 8464",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.60514431513235,
+ 38.21766462823088
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8465",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8465 accessories"
+ }
+ },
+ "system": "drone system 8465",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.56897346190546,
+ 39.062611023753526
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8466",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8466 accessories"
+ }
+ },
+ "system": "drone system 8466",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.49983826658337,
+ 39.619199635151084
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8467",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8467 accessories"
+ }
+ },
+ "system": "drone system 8467",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.72767746694892,
+ 39.3551131108987
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8468",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8468 accessories"
+ }
+ },
+ "system": "drone system 8468",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35588511395227,
+ 39.49770378534253
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8469",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8469 accessories"
+ }
+ },
+ "system": "drone system 8469",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.51668770663619,
+ 38.943321369413106
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8470",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8470 accessories"
+ }
+ },
+ "system": "drone system 8470",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97418651242477,
+ 39.02318636836512
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8471",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8471 accessories"
+ }
+ },
+ "system": "drone system 8471",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.5916466585746,
+ 39.09961408573885
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8472",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8472 accessories"
+ }
+ },
+ "system": "drone system 8472",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.8018789772922,
+ 39.16193297972387
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8473",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8473 accessories"
+ }
+ },
+ "system": "drone system 8473",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.55854632942263,
+ 39.58047799123217
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8474",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8474 accessories"
+ }
+ },
+ "system": "drone system 8474",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8465779030985,
+ 38.71653522546343
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8475",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8475 accessories"
+ }
+ },
+ "system": "drone system 8475",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.01912991693565,
+ 38.08543776380633
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8476",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8476 accessories"
+ }
+ },
+ "system": "drone system 8476",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24952747516176,
+ 39.29812574080998
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8477",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8477 accessories"
+ }
+ },
+ "system": "drone system 8477",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8412734200135,
+ 38.949706365012005
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8478",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8478 accessories"
+ }
+ },
+ "system": "drone system 8478",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.35118191327945,
+ 38.800091556786484
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8479",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8479 accessories"
+ }
+ },
+ "system": "drone system 8479",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.38839049633549,
+ 39.22222202619935
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8480",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8480 accessories"
+ }
+ },
+ "system": "drone system 8480",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15430089431588,
+ 39.14880639777158
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8481",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8481 accessories"
+ }
+ },
+ "system": "drone system 8481",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.38914880756009,
+ 38.614136566966316
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8482",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8482 accessories"
+ }
+ },
+ "system": "drone system 8482",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.70275043276683,
+ 38.45186928198979
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8483",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8483 accessories"
+ }
+ },
+ "system": "drone system 8483",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.02334380984983,
+ 39.0571671831722
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8484",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8484 accessories"
+ }
+ },
+ "system": "drone system 8484",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.53281765253782,
+ 38.975434797061006
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8485",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8485 accessories"
+ }
+ },
+ "system": "drone system 8485",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.2950979667782,
+ 38.595577059529056
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8486",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8486 accessories"
+ }
+ },
+ "system": "drone system 8486",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.97523574915797,
+ 38.59914930260504
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8487",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8487 accessories"
+ }
+ },
+ "system": "drone system 8487",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.42840686551348,
+ 38.37035802065685
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8488",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8488 accessories"
+ }
+ },
+ "system": "drone system 8488",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.3500326671331,
+ 39.158786394238
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8489",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8489 accessories"
+ }
+ },
+ "system": "drone system 8489",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.2767526366143,
+ 39.15045958939259
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8490",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8490 accessories"
+ }
+ },
+ "system": "drone system 8490",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.39866801622273,
+ 39.21646151063639
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8491",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8491 accessories"
+ }
+ },
+ "system": "drone system 8491",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.61698921588146,
+ 38.69823819993501
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8492",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8492 accessories"
+ }
+ },
+ "system": "drone system 8492",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.24851346981067,
+ 38.25804895283389
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8493",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8493 accessories"
+ }
+ },
+ "system": "drone system 8493",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.58366403383201,
+ 39.02079946016183
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8494",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8494 accessories"
+ }
+ },
+ "system": "drone system 8494",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75576772243834,
+ 39.56372582047856
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8495",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8495 accessories"
+ }
+ },
+ "system": "drone system 8495",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.65201023737913,
+ 38.442623220516694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8496",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8496 accessories"
+ }
+ },
+ "system": "drone system 8496",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.32463716199794,
+ 39.01996653513385
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8497",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8497 accessories"
+ }
+ },
+ "system": "drone system 8497",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.86616094342544,
+ 38.72622322033741
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8498",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8498 accessories"
+ }
+ },
+ "system": "drone system 8498",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.00095350732097,
+ 38.386863866104825
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8499",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8499 accessories"
+ }
+ },
+ "system": "drone system 8499",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.20821126282323,
+ 38.94425164782475
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8500",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8500 accessories"
+ }
+ },
+ "system": "drone system 8500",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.86236647522627,
+ 39.22892004590373
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8501",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8501 accessories"
+ }
+ },
+ "system": "drone system 8501",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.80210556404327,
+ 38.397420747235905
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8502",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8502 accessories"
+ }
+ },
+ "system": "drone system 8502",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.8121309382187,
+ 38.83764385397242
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8503",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8503 accessories"
+ }
+ },
+ "system": "drone system 8503",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.18332732206531,
+ 38.138074763722784
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8504",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8504 accessories"
+ }
+ },
+ "system": "drone system 8504",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.43278087334039,
+ 38.36638367858965
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8505",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8505 accessories"
+ }
+ },
+ "system": "drone system 8505",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41393394245219,
+ 38.73393694521659
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8506",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8506 accessories"
+ }
+ },
+ "system": "drone system 8506",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.81962518003104,
+ 38.83772658277583
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8507",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8507 accessories"
+ }
+ },
+ "system": "drone system 8507",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.47364627833068,
+ 38.847603952429694
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8508",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8508 accessories"
+ }
+ },
+ "system": "drone system 8508",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.75149749923699,
+ 39.04512649296587
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8509",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8509 accessories"
+ }
+ },
+ "system": "drone system 8509",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.41107929728346,
+ 39.53268759249439
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8510",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8510 accessories"
+ }
+ },
+ "system": "drone system 8510",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.03041775606793,
+ 38.83276005362248
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8511",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8511 accessories"
+ }
+ },
+ "system": "drone system 8511",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.23008052468475,
+ 39.57890995419246
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8512",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8512 accessories"
+ }
+ },
+ "system": "drone system 8512",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.74432355776108,
+ 39.35318980263205
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8513",
+ "status": "idle-busy",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8513 accessories"
+ }
+ },
+ "system": "drone system 8513",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.5707560534234,
+ 38.91995086211271
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8514",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8514 accessories"
+ }
+ },
+ "system": "drone system 8514",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.15568839800788,
+ 38.41426439791834
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8515",
+ "status": "in-motion",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8515 accessories"
+ }
+ },
+ "system": "drone system 8515",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -76.6326124977405,
+ 39.68188645041351
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed": 936.3017933727192,
+ "maxCargoWeight": 1007.0783993523173,
+ "maxAltitude": 361.07582327403867,
+ "cameraResolution": 1002.0367312610831,
+ "videoResolution": 732.1252582827228,
+ "hasWiFi": false,
+ "hasBluetooth": true,
+ "engineType": "engine",
+ "numberOfRotors": 1054.1744393566755,
+ "hasAccelerometer": false,
+ "hasGyroscope": true,
+ "hasRadar": false,
+ "hasGPS": true,
+ "hasObstacleSensors": true,
+ "hasUltraSonicAltimeter": false
+ },
+ {
+ "name": "drone8516",
+ "status": "idle-ready",
+ "accessories": {
+ "accessorie": {
+ "name": "drone8516 accessories"
+ }
+ },
+ "system": "drone system 8516",
+ "maxFlightTime": 446.601675532741,
+ "maxBatteryTime": 910.0380475088598,
+ "currentLocation": [
+ -77.21328232127327,
+ 39.21273922308229
+ ],
+ "imageUrl": "http://google.com/a.png",
+ "thumbnailUrl": "http://google.com/a.png",
+ "type": "type2",
+ "specificationContent": "xx",
+ "specificationImageUrl": "http://google.com/a.png",
+ "specificationPDFUrl": "http://google.com/a.pdf",
+ "minSpeed": 114.53369095893886,
+ "maxSpeed":